我的路线文件::
中定义了此路线Route::get('user/dashboard', ['as'=>'dashboard', 'uses'=>'AdminController@index']);
我试图在我的所有视图中读取路径的名称,在本例中为“仪表板”,我已经知道如何使用view :: share()方法传递它。 我已经在网上到处检查过,并查看了laravel API,我已经看到了其中两种方法,
//1. Route::currentRouteName();
//2. Route::getName();
但是它们似乎都没有工作,请问我做错了什么以及获取名称字符串的最佳方法是什么......
问候。
答案 0 :(得分:0)
Request class
提供了许多检查应用程序HTTP请求的方法,并扩展了Symfony\Component\HttpFoundation\Request class
编写Request::path()
以获取当前URI。