예제 #1
0
 /**
  * Show the application welcome screen to the user.
  *
  * @return Response
  */
 public function index(Buckaroo $buckaroo)
 {
     $categories = categorie::with('products', 'products.images', 'products.sizes')->get();
     return view('home', compact('categories'));
 }