是否有標準的Laravel方式來檢查命名路由是否屬於資源的一部分? 例如,在一個刀片模板我可以這樣做: @if(strpos(Route::currentRouteName(), 'posts') === 0)
Yep, you're viewing a post.index, post.edit, post.preview, etc.
@else
Nothing to do
我開發了一個Laravel(版本5.3)應用程序,該應用程序在使用XAMPP的本地計算機上運行良好。 在做直播的Hostinger.in,它給錯誤,如 InvalidArgumentException in FileViewFinder.php line 137:
View [welcome] not found in FileViewFinder
at FileViewFinder->f
我用laravel自定義表單要求與命令php artisan make:request AddressBookRequest 和使用,要求在我的控制器,如: public function add_address_book($lang,$user_id,AddressBookRequest $request){
dd($request);
}
當我運行API路線laravel顯示: Not