mirror of
https://github.com/snipe/snipe-it.git
synced 2024-12-25 21:54:14 -08:00
Consumables factory/seeder
This commit is contained in:
parent
57cbb5c5ce
commit
3b2ecda243
58
database/factories/ConsumableFactory.php
Normal file
58
database/factories/ConsumableFactory.php
Normal file
|
@ -0,0 +1,58 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Asset Model Factories
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| Factories related exclusively to creating models ..
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
$factory->define(App\Models\Consumable::class, function (Faker\Generator $faker) {
|
||||||
|
return [
|
||||||
|
'user_id' => 1,
|
||||||
|
'item_no' => $faker->numberBetween(1000000, 50000000),
|
||||||
|
'order_number' => $faker->numberBetween(1000000, 50000000),
|
||||||
|
'purchase_date' => $faker->dateTime(),
|
||||||
|
'purchase_cost' => $faker->randomFloat(2, 1, 50),
|
||||||
|
'qty' => $faker->numberBetween(5, 10),
|
||||||
|
'min_amt' => $faker->numberBetween($min = 1, $max = 2),
|
||||||
|
];
|
||||||
|
});
|
||||||
|
|
||||||
|
$factory->state(App\Models\Consumable::class, 'cardstock', function ($faker) {
|
||||||
|
|
||||||
|
return [
|
||||||
|
'name' => 'Cardstock (White)',
|
||||||
|
'category_id' => 10,
|
||||||
|
'manufacturer_id' => 10,
|
||||||
|
'qty' => 10,
|
||||||
|
'min_amt' => 2
|
||||||
|
];
|
||||||
|
});
|
||||||
|
|
||||||
|
$factory->state(App\Models\Consumable::class, 'paper', function ($faker) {
|
||||||
|
|
||||||
|
return [
|
||||||
|
'name' => 'Laserjet Paper (Ream)',
|
||||||
|
'category_id' => 10,
|
||||||
|
'manufacturer_id' => 10,
|
||||||
|
'qty' => 20,
|
||||||
|
'min_amt' => 2
|
||||||
|
];
|
||||||
|
});
|
||||||
|
|
||||||
|
$factory->state(App\Models\Consumable::class, 'ink', function ($faker) {
|
||||||
|
|
||||||
|
return [
|
||||||
|
'name' => 'Laserjet Toner (black)',
|
||||||
|
'category_id' => 11,
|
||||||
|
'manufacturer_id' => 5,
|
||||||
|
'qty' => 20,
|
||||||
|
'min_amt' => 2
|
||||||
|
];
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -91,3 +91,14 @@ $factory->state(App\Models\Manufacturer::class, 'adobe', function ($faker) {
|
||||||
'support_url' => 'https://support.adobe.com'
|
'support_url' => 'https://support.adobe.com'
|
||||||
];
|
];
|
||||||
});
|
});
|
||||||
|
|
||||||
|
$factory->state(App\Models\Manufacturer::class, 'avery', function ($faker) {
|
||||||
|
return [
|
||||||
|
'name' => 'Avery',
|
||||||
|
'url' => 'https://avery.com',
|
||||||
|
'support_url' => 'https://support.avery.com'
|
||||||
|
];
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -7,6 +7,9 @@ class ConsumableSeeder extends Seeder
|
||||||
public function run()
|
public function run()
|
||||||
{
|
{
|
||||||
Consumable::truncate();
|
Consumable::truncate();
|
||||||
factory(Consumable::class, 25)->create();
|
DB::table('consumables_users')->truncate();
|
||||||
|
factory(Consumable::class, 1)->states('cardstock')->create(); // 1
|
||||||
|
factory(Consumable::class, 1)->states('paper')->create(); // 2
|
||||||
|
factory(Consumable::class, 1)->states('ink')->create(); // 3
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue