*/ class PostFactory extends Factory { /** * Define the model's default state. * * @return array */ public function definition(): array { return [ 'title' => fake()->sentence(), 'content' => '

' . implode('

', fake()->paragraphs()) . '

', 'user_id' => 1, 'status' => 'published', 'published_at' => now(), 'hero_media_name' => 'stemmechanics-logo.png' ]; } }