In a fresh laravel 8 install, I have this in my web.php file: Route :: get ( '/' , 'HomeController@index' ); and this in the index method of the HomeController.php /** * Display a listing of the resource. * * @return \Illuminate\Http\ Response */ public function index () { return view ( 'welcome' ); } error page:-- The way to define your routes in laravel 8 or above is use App\Http\Controllers\ HomeController ; / / Using PHP callable syntax... Route :: get ( '/' , [ HomeCont...