Advertisement
Guest User

paginate

a guest
Mar 27th, 2016
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. $catalog = Catalog::where('slug', $catalog)->with([
  2. 'products' => function ($query) use ($catalog) {
  3. $query->where('published', 1)->orderBy('sort')->paginate(1);
  4. }
  5. ])->firstOrfail();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement