检测路由是否是资源的一部分

时间:2016-09-15 20:19:23

标签: laravel-5.2 laravel-routing

是否有标准的Laravel方法来检查命名路由是否属于资源?

例如,在Blade模板中,我可以这样做:

@if(strpos(Route::currentRouteName(), 'posts') === 0)
     Yep, you're viewing a post.index, post.edit, post.preview, etc.
@else
     Nothing to do with a post.
@if

想知道我是否已经掩饰了一些标准的做法,或者这是

1 个答案:

答案 0 :(得分:3)

我只是想通了:

Route::is('posts.*')