New Laravel Routes not working New Laravel Routes not working laravel laravel

New Laravel Routes not working


Try placing

Route::get('/courses/statistics', 'CourseController@statistics');

below this particular line of route code

Route::get('/courses/create', 'CourseController@create');

The general rule of laravel routing is to place specific routes before wildcard routes that are related. Link here


I had same issue, Did all those magic with configs and nothing..Solution: run: php artisan route:clear