Level 8
$page=Request::input('page','1');
$allProducts = Cache::remember('allProducts_'.$page,'30',function(){
return Products::orderby('name','ASC')->paginate(15);
});
return view('manage-products',['products' => $allProducts]);
You have to give a name for each page other wise Cache will only store first page of your pagination results. So for now if you go to
foo?page=2 // cache will store or reterive from allProducts_2
foo?page=3 // cache will store or reterive from allProducts_3
1 like