我試圖使用以下查詢爲查詢構建器分配一些數據。Laravel Paginate不工作
public function productSearch(Request $request)
{
$name = $request->name;
$products = DB::table('products')
->where('name', 'LIKE', "%$name%")
->paginate(4);
return view('product',compact('products');
}
但是,當我試圖顯示視圖頁面分頁與以下行
{{ $products->links() }}
它顯示
方法鏈接不存在
什麼可能的錯誤是因爲分頁沒有顯示?
試試這個 '$ products = DB :: table('products') - > where('name','LIKE',「%$ name%」); $ products-> paginate(4);' –
在使用'{{$ products-> links()}}'之前,請先查看foreach循環。請點擊以下鏈接:https://laravel.com/docs/5.4/pagination#displaying-pagination-results –
控制器中是否有'$ products'的結果? 'dd($ products)''你得到了什麼? – linktoahref