是否有标准的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
想知道我是否已经掩饰了一些标准的做法,或者这是它。
答案 0 :(得分:3)
我只是想通了:
Route::is('posts.*')