/
marklis
/
anticafe-breeze
Обзор
Документация
Войти
/
marklis
/
anticafe-breeze
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
dev
app/Http/Controllers/Auth/EmailVerificationPromptController.php
22 строки
628 B
Мамонов Алексей Анатольевич
Инициализация
06 мар 2025, 17:45
06 мар 2025, 17:45
0f37205
Код
Авторство
О чём код?
<?php namespace App\Http\Controllers\Auth; use App\Http\Controllers\Controller; 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(route('dashboard', absolute: false)) : Inertia::render('Auth/VerifyEmail', ['status' => session('status')]); } }