Class App\Http\Controllers\UserController Does Not Exist

后端 未结 6 2570
忘掉有多难
忘掉有多难 2020-12-11 04:04

Having the issue when loading the route /users or /user/add and being return an error of;

ReflectionException in Route.php line 280: Class App\\Http

6条回答
  •  Happy的楠姐
    2020-12-11 04:13

    Laravel 8 updated the Route format, please try the updated format on controllers routes.

    use App\Http\Controllers\UserController;

    Route::get('/user', [UserController::class, 'index']);

    Fixed.

提交回复
热议问题