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
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']);
use App\Http\Controllers\UserController;
Route::get('/user', [UserController::class, 'index']);
Fixed.