Fix styling

This commit is contained in:
Thijmen
2024-06-10 20:43:34 +00:00
committed by github-actions[bot]
parent 41fb6a1fc9
commit d86274cc37
429 changed files with 5307 additions and 2831 deletions

View File

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