📅  最后修改于: 2022-03-11 14:53:56.202000             🧑  作者: Mango
// replace get()
$products = Product::where('active', 1)->get();
// by paginate()
$products = Product::where('active', 1)->paginate(10);