get the generated IDs from the middle of the sha1 hash

This commit is contained in:
Nabeel Shahzad
2018-01-02 11:23:38 -06:00
parent 080e8842ac
commit 93786835af
3 changed files with 3 additions and 3 deletions

View File

@@ -8,7 +8,7 @@ $airlinesAvailable = [1];
$factory->define(App\Models\Flight::class, function (Faker $faker) use ($airlinesAvailable) {
return [
'id' => substr($faker->unique()->sha1, 0, 12),
'id' => substr($faker->unique()->sha1, 28, 12),
'airline_id' => $faker->randomElement($airlinesAvailable),
'flight_number' => $faker->unique()->text(10),
'route_code' => $faker->randomElement(['', $faker->text(5)]),