comment('--- AIRCRAFT IMPORT ---'); $subfleet = $this->getSubfleet(); $this->info('Subfleet ID is '.$subfleet->id); $count = 0; foreach ($this->db->readRows($this->table, $start) as $row) { $where = [ 'name' => $row->fullname, 'registration' => $row->registration, ]; $aircraft = Aircraft::firstOrCreate($where, [ 'icao' => $row->icao, 'subfleet_id' => $subfleet->id, 'active' => $row->enabled, ]); $this->idMapper->addMapping('aircraft', $row->id, $aircraft->id); if ($aircraft->wasRecentlyCreated) { $count++; } } $this->info('Imported '.$count.' aircraft'); } /** * Return the subfleet * * @return mixed */ protected function getSubfleet() { $airline = Airline::first(); $subfleet = Subfleet::firstOrCreate([ 'airline_id' => $airline->id, 'name' => self::SUBFLEET_NAME, ], ['type' => 'PHPVMS']); return $subfleet; } }