|
<?php
|
|
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
Route::middleware(['auth', 'verified','role:guest'])->group(function () {
|
|
Route::prefix('guest')->group(function () {
|
|
Route::get('/complete-profile', \App\Livewire\Guest\CompleteProfile::class)->name('guest.complete-profile');
|
|
});
|
|
});
|