method illuminate 5csupport 5ccollection 3a 3aappends does not exist

Solutions on MaxInterview for method illuminate 5csupport 5ccollection 3a 3aappends does not exist by the best coders in the world

showing results for - "method illuminate 5csupport 5ccollection 3a 3aappends does not exist "
Ilaria
09 Apr 2019
1// replace get()
2$products = Product::where('active', 1)->get();
3// by paginate()
4$products = Product::where('active', 1)->paginate(10);
similar questions