Route/web.php
Route::get('/', 'HomeController@index');
issue in the attached picture occurs.
It's laravel 8.x.
Route/web.php
Route::get('/', 'HomeController@index');
issue in the attached picture occurs.
It's laravel 8.x.
Import the class in the top. I think you forget this.
use app\Http\Controllers\HomeController;
and then,
Route::get('/', [HomeController::class,'index');