Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // imagen de comerciante
- $pictures = Picture::where('user_id', $request->user()->id)->where('type',0)->get();
- // datos bancarios
- $banks = Bank::where('user_id', $request->user()->id)->limit(2)->get();
- //datos de comerciante
- $commerces = Commerce::where('user_id', $request->user()->id)->where('delete',0)->orderBy('name', 'asc')->get();
- //recibe productos con sus variantes, combinaciones y imagenes
- $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