コード例 #1
0
 public function getListing()
 {
     return view("store.index")->with("skip_back_link", true)->with("cart", $this->userCart())->with("products", Store\Product::latest()->simplePaginate(30));
 }
コード例 #2
0
ファイル: StoreController.php プロジェクト: Bobo1239/osu-web
 public function getListing()
 {
     return view('store.index')->with('skip_back_link', true)->with('cart', $this->userCart())->with('products', Store\Product::latest()->simplePaginate(30));
 }