Answer the question
In order to leave comments, you need to log in
Can't get rid of old routes!?
There was a route:
Route::group(['middleware' => ['auth']], function () {
Route::group(['prefix' => 'admin'], function () {
Route::get('/home', '[email protected]');
...
});
});
Route::group(['middleware' => ['auth']], function () {
Route::group(['prefix' => 'admin'], function () {
Route::get('/', '[email protected]');
});
});
php artisan route:list
php artisan route:cache, php artisan route:clear
did not help, the link /home
is still available
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question