31 lines
682 B
PHP
31 lines
682 B
PHP
<?php
|
|
|
|
namespace Database\Factories;
|
|
|
|
use App\Models\HeroSlide;
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
|
|
/**
|
|
* @extends Factory<HeroSlide>
|
|
*/
|
|
class HeroSlideFactory extends Factory
|
|
{
|
|
public function definition(): array
|
|
{
|
|
return [
|
|
'headline' => fake()->sentence(3),
|
|
'subheadline' => fake()->sentence(8),
|
|
'cta_label' => fake()->words(3, true),
|
|
'cta_url' => '#',
|
|
'image' => null,
|
|
'sort_order' => fake()->numberBetween(0, 10),
|
|
'is_active' => true,
|
|
];
|
|
}
|
|
|
|
public function inactive(): static
|
|
{
|
|
return $this->state(['is_active' => false]);
|
|
}
|
|
}
|