在Laravel v4中,我可以使用…

Route::currentRouteName()

我如何在Laravel v5和Laravel v6中做到这一点?


当前回答

如果你需要url,而不是路由名,你不需要使用/需要任何其他类:

url()->current();

其他回答

有很多方法可以做到这一点。你可以输入:

\Illuminate\Support\Facades\Request::route()->getName()

获取路由名称。

Laravel 5.2可以使用

$request->route()->getName()

它会给你当前的路由名。

使用Laravel 5.1,您可以使用

\Request::route()->getName()

在控制器中访问当前路由名

Ie - http://localhost/your_project_name/edit

$request->segment(1);  // edit

(或)

$request->url();  // http://localhost/your_project_name/edit

要求::路径();更好,记住使用Request;