在Laravel v4中,我可以使用…

Route::currentRouteName()

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


当前回答

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

url()->current();

其他回答

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

Ie - http://localhost/your_project_name/edit

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

(或)

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

在我看来,最简单的解决方案是使用这个助手:

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

有关文档,请参见这个链接

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

在larvel 5.3中,我用它来获取路由名

要求::路径()

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