PATH:
home
/
lab2454c
/
costbloc.com
/
vendor
/
laravel
/
breeze
/
stubs
/
inertia-common
/
app
/
Http
/
Controllers
/
Auth
<?php namespace App\Http\Controllers\Auth; use App\Http\Controllers\Controller; use App\Providers\RouteServiceProvider; use Illuminate\Http\RedirectResponse; use Illuminate\Http\Request; use Inertia\Inertia; use Inertia\Response; class EmailVerificationPromptController extends Controller { /** * Display the email verification prompt. */ public function __invoke(Request $request): RedirectResponse|Response { return $request->user()->hasVerifiedEmail() ? redirect()->intended(RouteServiceProvider::HOME) : Inertia::render('Auth/VerifyEmail', ['status' => session('status')]); } }
[-] AuthenticatedSessionController.php
[edit]
[-] PasswordController.php
[edit]
[-] RegisteredUserController.php
[edit]
[-] ConfirmablePasswordController.php
[edit]
[-] VerifyEmailController.php
[edit]
[-] EmailVerificationPromptController.php
[edit]
[+]
..
[-] NewPasswordController.php
[edit]
[-] EmailVerificationNotificationController.php
[edit]
[-] PasswordResetLinkController.php
[edit]