在dashboard.blade.php中,我管理js庫鏈接。在laravel中查看請求URL
所以,我並不想在網頁中的所有庫,我這樣做是:
@if (Request::is("mail/create"))
{!! Html::script('js/plugins/ui/nicescroll.min.js') !!}
{!! Html::script('js/sidebar_detached_sticky_custom.js') !!}
@endif
每個頁面或一組頁面。
事情是,當我編輯的項目,我在我的URL具有以下格式:
http://laravel.dev:8000/mail/1/edit
而作爲1是店鋪ID和變化,我的方法不工作了....
任何方法來解決我的問題或做得更好?
Tx!
tx爲您的幫助!第二選擇工作!添加這個第一個答案:https://laravel.com/docs/5.1/routing#named-routes –