I have Laravel app. I defined route in routes/web.php
like this:
Route::get('/{slug}/discussion', 'DiscussionController@showForDistrict')->name('district_discussion');
I have DiscussionController with method showForDistrict like this
public function showForDistrict($microregion_slug){
return $microregion_slug;
}
And finally I have view where I call route() function. But it throws exception Symfony\Component\Routing\Exception\RouteNotFoundException
$district->slug])}}">
It’s interesting that routes are presented in php artisan route:list
output! I’ve tried to clean cache php artisan route:clear
. What can I try next?
Update. Even if I comment all my routes, and php artisan route:list
doesn’t show any routes. My app continue working… May be some cache troubles. But I’ve cleared cache by different ways.