在之前的文章Laravel - Search Facility on site using Eloquent後的一些幫助後,我現在需要幫助使用內置的laravel分頁類對結果進行分頁。Paginate搜索結果laravel
public function search() //no parameter now
{
$q = Input::get('term');
if($q && $q != ''){
$searchTerms = explode(' ', $q);
$query = DB::table('wc_program'); // it's DB::table(), not DB::tables
if(!empty($searchTerms)){
foreach($searchTerms as $term) {
$query->where('JobRef', 'LIKE', '%'. $term .'%');
}
}
$results = $query->get();
dd($results); // for debugging purpose. Use a View here
}
}
我改變了$ results = $ query-> get(); 至 $ results = $ query-> paginate(10); 其中,但進行分頁,當我去3 2頁頁等等等等,我得到 的Symfony \分量\ HttpKernel \異常\ NotFoundHttpException 這事做路由? –