*/ #[UseModel(Notification::class)] class NotificationFactory extends Factory { /** * Define the model's default state. * * @return array */ public function definition(): array { return [ Notification::ATTRIBUTE_ID => Str::uuid()->__toString(), Notification::ATTRIBUTE_TYPE => ExternalProfileSyncedNotification::class, Notification::ATTRIBUTE_DATA => [], ]; } }