31 lines
704 B
PHP
31 lines
704 B
PHP
<?php
|
|
|
|
namespace Database\Factories;
|
|
|
|
use App\Models\SignatureItem;
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
|
|
/**
|
|
* @extends Factory<SignatureItem>
|
|
*/
|
|
class SignatureItemFactory extends Factory
|
|
{
|
|
public function definition(): array
|
|
{
|
|
return [
|
|
'name' => fake()->words(3, true),
|
|
'price' => fake()->randomFloat(2, 50, 1000),
|
|
'price_unit' => 'kg',
|
|
'description' => fake()->sentence(12),
|
|
'image' => null,
|
|
'sort_order' => fake()->numberBetween(0, 10),
|
|
'is_active' => true,
|
|
];
|
|
}
|
|
|
|
public function inactive(): static
|
|
{
|
|
return $this->state(['is_active' => false]);
|
|
}
|
|
}
|