| 123456789101112131415161718192021222324252627 |
- <?php
- namespace Database\Factories;
- use Illuminate\Database\Eloquent\Factories\Factory;
- /**
- * @extends \Illuminate\Database\Eloquent\Factories\Factory<\App\Models\Category>
- */
- class CategoryFactory extends Factory
- {
- /**
- * Define the model's default state.
- *
- * @return array<string, mixed>
- */
- public function definition(): array
- {
- $name = $this->faker->word();
-
- return [
- 'name' => ucfirst($name),
- 'description' => $this->faker->sentence(),
- 'is_active' => $this->faker->boolean(80),
- ];
- }
- }
|