Esempio n. 1
0
 /**
  * Display a listing of the resource.
  *
  * @return \Illuminate\Http\Response
  */
 public function index()
 {
     return view('cartridges.index', ['cartridges' => Cartridge::all()]);
 }
Esempio n. 2
0
 public function showManufacturers($manufacturer)
 {
     return view('bullets.index', ['cartridges' => Cartridge::all(), 'bullets' => Bullet::where('manufacturer', $manufacturer)->get(), 'sort' => 'inventory']);
 }