-1

Route/web.php

Route::get('/', 'HomeController@index');

enter image description here

issue in the attached picture occurs.

It's laravel 8.x.

1 Answers1

1

Import the class in the top. I think you forget this.

use app\Http\Controllers\HomeController;

and then,

Route::get('/', [HomeController::class,'index');
Azahar Alam
  • 708
  • 5
  • 16