Advertisement
angelgoitia

codigo

Sep 5th, 2022
932
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.67 KB | None | 0 0
  1. // imagen de comerciante
  2. $pictures = Picture::where('user_id', $request->user()->id)->where('type',0)->get();
  3. // datos bancarios
  4. $banks = Bank::where('user_id', $request->user()->id)->limit(2)->get();
  5. //datos de comerciante
  6. $commerces = Commerce::where('user_id', $request->user()->id)->where('delete',0)->orderBy('name', 'asc')->get();
  7.  
  8. //recibe productos con sus variantes, combinaciones y imagenes
  9. $products = Product::with('images')->with('variants')->with('variants.options')->with('inventories')->with('inventories.combinations')->where('user_id', $request->user()->id)->where('commerce_id', $request->commerce_id)->orderBy('name', 'asc')->get()->sortBy('images.position');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement