This is so basic, but driving me mad. In the laracast video https://laracasts.com/series/laravel-from-scratch-2017/episodes/24, right at the start, Jeffery types
App::bind(.....
into web.php.
I have a new install of Laravel 5.4. If I type App::bind
I get "undefined class App". If I give a full path name
\Illuminate\Support\Facades\App::bind
it says method bind not found in \Illuminate\Support\Facades.
What am I doing wrong. I thought Facades were all registered automatically.