在Laravel v4中,我可以使用…

Route::currentRouteName()

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


当前回答

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

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

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

其他回答

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

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

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

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

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

最短的方法是Route facade \路线::当前()- > getName ()

这也适用于laravel 5.4.*

你可以在模板中使用:

<?php $path = Route::getCurrentRoute()->getPath(); ?>
<?php if (starts_with($path, 'admin/')) echo "active"; ?>