*/ class PortfolioFactory extends Factory { /** * Define the model's default state. * * @return array */ public function definition(): array { return [ 'title' => $this->faker->words(4, true), 'created_at' => now(), 'updated_at' => now(), ]; } }