I have a problem with the Route::resource()
method in Laravel 8.x.
The error it returns is:
Target class [Admin\App\Http\Controllers\Admin\ProfileController] does not exist.
Here is my code in routes/web.php:
Route::prefix('admin')->namespace('Admin')->group(static function() {
Route::middleware('auth')->group(static function () {
//...
Route::resource('profile', ProfileController::class);
});
});
I could not find where the problem is.