*/ class HentaiFactory extends Factory { /** * Define the model's default state. * * @return array */ public function definition(): array { return [ 'slug' => $this->faker->slug, 'description' => $this->faker->text(), ]; } }