You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1.0 KiB
PHP
32 lines
1.0 KiB
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Route;
|
|
use Laravel\Fortify\Features;
|
|
use Laravel\Fortify\Http\Controllers\EmailVerificationNotificationController;
|
|
use Laravel\Fortify\Http\Controllers\VerifyEmailController;
|
|
|
|
require __DIR__ . '/admin.php';
|
|
if (Features::enabled(Features::emailVerification())) {
|
|
Route::get('/email/verify', function () {
|
|
return view('auth.verify-email');
|
|
})->middleware(['auth'])->name('verification.notice');
|
|
|
|
Route::get('/email/verify/{id}/{hash}', [VerifyEmailController::class, '__invoke'])
|
|
->middleware(['auth', 'signed'])
|
|
->name('verification.verify');
|
|
|
|
Route::post('/email/verification-notification', [EmailVerificationNotificationController::class, 'store'])
|
|
->middleware(['auth', 'throttle:6,1'])
|
|
->name('verification.send');
|
|
}
|
|
Route::get('/', function () {
|
|
return view('welcome');
|
|
});
|
|
|
|
Route::middleware(['auth', 'verified'])->group(function () {
|
|
Route::get('/dashboard', function () {
|
|
return view('dashboard.home');
|
|
})->name('dashboard');
|
|
});
|
|
|