示例#1
0
 /**
  * Display a listing of the resource.
  *
  * @return \Illuminate\Http\Response
  */
 public function index()
 {
     $guns = Gun::all();
     $armors = Armor::all();
     $cars = Car::all();
     return view('shop.shop', compact('guns', 'armors', 'cars'));
 }