Files
coolify/app/Livewire/VerifyEmail.php
Andras Bacsai 1fe4dd722b Revert "rector: arrrrr"
This reverts commit 16c0cd10d8.
2025-01-07 15:31:43 +01:00

28 lines
570 B
PHP

<?php
namespace App\Livewire;
use DanHarrin\LivewireRateLimiting\WithRateLimiting;
use Livewire\Component;
class VerifyEmail extends Component
{
use WithRateLimiting;
public function again()
{
try {
$this->rateLimit(1, 300);
auth()->user()->sendVerificationEmail();
$this->dispatch('success', 'Email verification link sent!');
} catch (\Exception $e) {
return handleError($e, $this);
}
}
public function render()
{
return view('livewire.verify-email');
}
}