1
嗨:)即時解析我的數據庫在一個表與分頁!laravel post on post
這是我的控制器
$theme = Theme::all();
$questions = questionList::paginate(10);
$the = "";
return View::make('home.home')
->with('user',Auth::user())
->with('theme', $theme)
->with('the' , $the)
->with('questions',$questions);
和我的觀點,我有我的{{ $questions->links(); }}
桌子底下它的正常工作! 的事情是,我有一個主題列表來排序表中的數據,所以當我點擊divertisement我得到divertisement數據。 問題是,當我分頁它回到獲取請求,並給我所有的數據!這是什麼問題:) THX