*/ class StreakFactory extends Factory { protected $model = Streak::class; /** * Define the model's default state. * * @return array */ public function definition() { return [ 'goal_id' => Goal::factory(), 'happened_at' => $this->faker->dateTimeThisCentury, ]; } }