mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
59 lines
1.4 KiB
PHP
59 lines
1.4 KiB
PHP
|
<?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
|
||
|
];
|
||
|
});
|
||
|
|
||
|
|
||
|
|