Small accessory factory tweaks

This commit is contained in:
snipe 2017-10-07 07:24:15 -07:00
parent a69a939034
commit 324d44dbac

View file

@ -12,6 +12,8 @@
$factory->define(App\Models\Accessory::class, function (Faker\Generator $faker) {
return [
'user_id' => 1,
'model_number' => $faker->numberBetween(1000000, 50000000),
'location_id' => rand(1,5),
];
});