*/ class UserNotificationSentFactory extends Factory { protected $model = UserNotificationSent::class; /** * Define the model's default state. * * @return array */ public function definition() { return [ 'user_notification_channel_id' => UserNotificationChannel::factory(), 'sent_at' => $this->faker->dateTimeThisCentury(), 'subject_line' => 'test', ]; } }