コード例 #1
0
ファイル: ShopController.php プロジェクト: whplay/ohmate-shop
 public function index()
 {
     return view('shop.index')->with(['items' => Commodity::whereNull('special_sale')->with('images')->orderBy('priority', 'desc')->get()]);
 }