Advertisement
Guest User

Untitled

a guest
Jul 21st, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. $cari = Product::where('slug', $slug)->first();
  2.  
  3. use get() instead of first()
  4.  
  5. $cari = Product::where('slug', $slug)->get();
  6.  
  7. when you use first() function it will return only one array.
  8. use get()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement