*/ class NotificationPreferenceFactory extends Factory { /** * Define the model's default state. * * @return array */ public function definition(): array { return [ 'user_id' => User::factory(), 'post_published' => true, 'post_failed' => true, 'account_disconnected' => true, 'mentioned_in_comment' => true, ]; } }