2017-10-07 02:46:04 -07:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
2017-10-07 06:17:39 -07:00
|
|
|
| Consumables Factories
|
2017-10-07 02:46:04 -07:00
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
2017-10-07 06:17:39 -07:00
|
|
|
| Factories related exclusively to creating consumables ..
|
2017-10-07 02:46:04 -07:00
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
$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),
|
2021-06-10 13:15:52 -07:00
|
|
|
'purchase_date' => $faker->dateTimeBetween('-1 years', 'now', date_default_timezone_get()),
|
2017-10-07 02:46:04 -07:00
|
|
|
'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,
|
2018-02-22 21:46:58 -08:00
|
|
|
'min_amt' => 2,
|
2021-06-10 13:15:52 -07:00
|
|
|
'company_id' => 3,
|
2017-10-07 02:46:04 -07:00
|
|
|
];
|
|
|
|
});
|
|
|
|
|
|
|
|
$factory->state(App\Models\Consumable::class, 'paper', function ($faker) {
|
|
|
|
return [
|
|
|
|
'name' => 'Laserjet Paper (Ream)',
|
|
|
|
'category_id' => 10,
|
|
|
|
'manufacturer_id' => 10,
|
|
|
|
'qty' => 20,
|
2021-06-10 13:15:52 -07:00
|
|
|
'min_amt' => 2,
|
2017-10-07 02:46:04 -07:00
|
|
|
];
|
|
|
|
});
|
|
|
|
|
|
|
|
$factory->state(App\Models\Consumable::class, 'ink', function ($faker) {
|
|
|
|
return [
|
|
|
|
'name' => 'Laserjet Toner (black)',
|
|
|
|
'category_id' => 11,
|
|
|
|
'manufacturer_id' => 5,
|
|
|
|
'qty' => 20,
|
2021-06-10 13:15:52 -07:00
|
|
|
'min_amt' => 2,
|
2017-10-07 02:46:04 -07:00
|
|
|
];
|
|
|
|
});
|