link() ->label(__('filament-panels::auth/pages/email-verification/email-verification-prompt.actions.resend_notification.label').'.') ->size('sm') ->action(function (): void { try { $this->rateLimit(2); } catch (TooManyRequestsException $exception) { $this->getRateLimitedNotification($exception)?->send(); return; } $this->sendEmailVerificationNotification($this->getVerifiable()); CheerfulNotification::success( 'Mail Meluncur! 📧🚀', 'Tautan verifikasi baru sudah dikirim ke alamat surelmu. Cek inbox (atau spam) ya! 😉✨' )->send(); }); } protected function getRateLimitedNotification(TooManyRequestsException $exception): ?Notification { return CheerfulNotification::danger( 'Pelan-pelan ya ⏳', 'Permintaan terlalu sering. Tunggu sebentar lalu coba lagi dalam '.$exception->secondsUntilAvailable.' detik.' )->send(); } }