*/ class TaxonomyTermFactory extends Factory { /** * Define the model's default state. * * @return array */ public function definition(): array { $title = $this->faker->words(2, true); return [ 'channel_id' => \App\Models\Channel::factory(), 'title' => ucfirst($title), 'slug' => \Illuminate\Support\Str::slug($title), ]; } }