コード例 #1
0
 public function run()
 {
     //DB::table('airlines')->delete();
     // lot
     Airline::create(array('name' => 'LOT Polish Airlines', 'funds' => 69000000, 'ceo' => 'Sebastian Mikosz', 'iata_code' => 'lo', 'headquarters_airport_id' => 1));
     // Lufthansa
     Airline::create(array('name' => 'Lufthansa', 'funds' => 87810300, 'ceo' => 'Carsten Spohr', 'iata_code' => 'lh', 'headquarters_airport_id' => 4));
     // ba
     Airline::create(array('name' => 'British Airways', 'funds' => 98200490, 'ceo' => 'Keith Williams', 'iata_code' => 'ba', 'headquarters_airport_id' => 5));
     // eurolot
     Airline::create(array('name' => 'Eurolot', 'funds' => 3700000, 'ceo' => 'Tomasz Balcerzak', 'iata_code' => 'k2', 'headquarters_airport_id' => 1));
 }