在我的laravel 5.7.3应用程序中,我想获取当前路径以在后端显示当前菜单项以供列表和编辑,如下所示:
$route_name = Route::currentRouteName();
在我的route / web.php中,我写道:
Route::get('votes/filter/{filter_type}/{filter_value}', 'Admin\VotesController@index')->name('VotesFilter');
// that works ok - as I got $route_name == 'admin.VotesFilter'
但是我没有获得编辑器的路由名称。作为name(方法,我尝试了2个参数:
Route::resource('votes', 'Admin\VotesController', ['except' => ['create', 'edit']])->name('VoteEditor', ['id' => '{vote_id}']);
// But I got $route_name == 'admin.'
哪种方法有效?
谢谢!