謝謝大大! 我研究出來了!想再請問大大一個問題
我用的方法是 App/AppServiceProvider 有成功讀取所有資料,
如果想設定全域變數,並且篩選 例如:ID 1的詳細資料該怎麼撰寫?
public function boot()
{
// Using view composer to set following variables globally
view()->composer('post',function($view) {
$view->with('post_info', POST::where('id',$id));
});
}
例如 http://localhost/post/1
想在有關 post 的畫面 都去讀 id = 1 找到 POST 詳細資訊
請問 $view->with('post_info', POST::where('id',$id));
$id 要怎麼取得?
要看你的Route怎麼設定才知道怎麼取值,參考以下…
https://stackoverflow.com/questions/27298426/how-to-pass-get-parameters-to-laravel-from-with-get-method