Mercurial > packages > auth
view stubs/default/app/Http/Controllers/Auth/EmailVerificationNotificationController.php @ 1:a2a3059de103
Updates to some styles and general automation of creation
| author | luka |
|---|---|
| date | Thu, 14 Aug 2025 21:09:25 -0400 |
| parents | 90e38de8f2ba |
| children |
line wrap: on
line source
<?php namespace App\Http\Controllers\Auth; use App\Http\Controllers\Controller; use Illuminate\Http\RedirectResponse; use Illuminate\Http\Request; class EmailVerificationNotificationController extends Controller { /** * Send a new email verification notification. */ public function store(Request $request): RedirectResponse { if ($request->user()->hasVerifiedEmail()) { return redirect()->intended(route('dashboard', absolute: false)); } $request->user()->sendEmailVerificationNotification(); return back()->with('status', 'verification-link-sent'); } }
