phpvms/app/Database/factories/AirlineFactory.php

23 lines
637 B
PHP

<?php
use Faker\Generator as Faker;
use Hashids\Hashids;
/**
* Add any number of airports. Don't really care if they're real or not
*/
$factory->define(App\Models\Airline::class, function (Faker $faker) {
return [
'id' => null,
'icao' => function (array $apt) use ($faker) {
$hashids = new Hashids(microtime(), 5);
$mt = str_replace('.', '', microtime(true));
return $hashids->encode($mt);
},
'iata' => function (array $apt) { return $apt['icao']; },
'name' => $faker->sentence(3),
'country' => $faker->country,
'active' => 1
];
});