coolify/app/Livewire/VerifyEmail.php
2024-06-10 20:43:34 +00:00

31 lines
593 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) {
ray($e);
return handleError($e, $this);
}
}
public function render()
{
return view('livewire.verify-email');
}
}