コード例 #1
0
 /**
  * Display a listing of the resource.
  *
  * @return \Illuminate\Http\Response
  */
 public function getIndex()
 {
     //
     $flights = Flight::all();
     return view('flight.index', ['flights' => $flights]);
 }
コード例 #2
0
 public function index()
 {
     $flights = Flight::all();
     return view('scrapers.index')->with('flights', $flights);
 }