snipe-it/database/factories/CustomFieldsetFactory.php

47 lines
892 B
PHP
Raw Normal View History

<?php
2021-06-10 13:19:27 -07:00
2021-06-10 13:17:44 -07:00
namespace Database\Factories;
2021-06-10 13:19:27 -07:00
use App\Models\CustomFieldset;
2021-06-10 13:17:44 -07:00
use Illuminate\Database\Eloquent\Factories\Factory;
2021-06-10 13:17:44 -07:00
class CustomFieldsetFactory extends Factory
{
/**
* The name of the factory's corresponding model.
*
* @var string
*/
protected $model = CustomFieldset::class;
2021-06-10 13:17:44 -07:00
/**
* Define the model's default state.
*
* @return array
*/
public function definition()
{
return [
'name' => $this->faker->unique()->catchPhrase(),
2021-06-10 13:17:44 -07:00
];
}
2021-06-10 13:17:44 -07:00
public function mobile()
{
return $this->state(function () {
return [
'name' => 'Mobile Devices',
];
});
}
public function computer()
{
return $this->state(function () {
return [
'name' => 'Laptops and Desktops',
];
});
}
}