mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 15:44:11 -08:00
66 lines
1.4 KiB
PHP
66 lines
1.4 KiB
PHP
|
<?php
|
||
|
|
||
|
/*
|
||
|
|--------------------------------------------------------------------------
|
||
|
| Asset Model Factories
|
||
|
|--------------------------------------------------------------------------
|
||
|
|
|
||
|
| Factories related exclusively to creating models ..
|
||
|
|
|
||
|
*/
|
||
|
|
||
|
$factory->define(App\Models\Accessory::class, function (Faker\Generator $faker) {
|
||
|
return [
|
||
|
'user_id' => 1,
|
||
|
];
|
||
|
});
|
||
|
|
||
|
$factory->state(App\Models\Accessory::class, 'apple-bt-keyboard', function ($faker) {
|
||
|
|
||
|
return [
|
||
|
'name' => 'Bluetooth Keyboard',
|
||
|
'category_id' => 8,
|
||
|
'manufacturer_id' => 1,
|
||
|
'qty' => 10,
|
||
|
'min_amt' => 2
|
||
|
];
|
||
|
|
||
|
});
|
||
|
|
||
|
$factory->state(App\Models\Accessory::class, 'apple-usb-keyboard', function ($faker) {
|
||
|
|
||
|
return [
|
||
|
'name' => 'USB Keyboard',
|
||
|
'category_id' => 8,
|
||
|
'manufacturer_id' => 1,
|
||
|
'qty' => 15,
|
||
|
'min_amt' => 2
|
||
|
];
|
||
|
|
||
|
});
|
||
|
|
||
|
$factory->state(App\Models\Accessory::class, 'apple-mouse', function ($faker) {
|
||
|
|
||
|
return [
|
||
|
'name' => 'Magic Mouse',
|
||
|
'category_id' => 9,
|
||
|
'manufacturer_id' => 1,
|
||
|
'qty' => 13,
|
||
|
'min_amt' => 2
|
||
|
];
|
||
|
|
||
|
});
|
||
|
|
||
|
$factory->state(App\Models\Accessory::class, 'microsoft-mouse', function ($faker) {
|
||
|
|
||
|
return [
|
||
|
'name' => 'Sculpt Comfort Mouse\'',
|
||
|
'category_id' => 9,
|
||
|
'manufacturer_id' => 2,
|
||
|
'qty' => 13,
|
||
|
'min_amt' => 2
|
||
|
];
|
||
|
|
||
|
});
|
||
|
|