*/ class ContactReminderFactory extends Factory { protected $model = ContactReminder::class; /** * Define the model's default state. * * @return array */ public function definition() { return [ 'contact_id' => Contact::factory(), 'label' => $this->faker->sentence(), 'day' => 29, 'month' => 10, 'year' => 1981, 'type' => ContactReminder::TYPE_ONE_TIME, 'frequency_number' => 1, 'last_triggered_at' => null, 'number_times_triggered' => 0, ]; } }