all
This commit is contained in:
@ -0,0 +1,46 @@
|
||||
<?php
|
||||
|
||||
namespace Database\Factories;
|
||||
|
||||
use App\Models\CustomFieldset;
|
||||
use Illuminate\Database\Eloquent\Factories\Factory;
|
||||
|
||||
class CustomFieldsetFactory extends Factory
|
||||
{
|
||||
/**
|
||||
* The name of the factory's corresponding model.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $model = CustomFieldset::class;
|
||||
|
||||
/**
|
||||
* Define the model's default state.
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public function definition()
|
||||
{
|
||||
return [
|
||||
'name' => $this->faker->unique()->catchPhrase(),
|
||||
];
|
||||
}
|
||||
|
||||
public function mobile()
|
||||
{
|
||||
return $this->state(function () {
|
||||
return [
|
||||
'name' => 'Mobile Devices',
|
||||
];
|
||||
});
|
||||
}
|
||||
|
||||
public function computer()
|
||||
{
|
||||
return $this->state(function () {
|
||||
return [
|
||||
'name' => 'Laptops and Desktops',
|
||||
];
|
||||
});
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user