2025-12-11 15:10:26 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
|
use App\Livewire\ApplicantForm;
|
|
|
|
|
|
|
|
|
|
Route::get('/test', function () {
|
|
|
|
|
return view('welcome');
|
|
|
|
|
})->name('home');
|
|
|
|
|
|
|
|
|
|
Route::get('/', ApplicantForm::class)->name('application');
|
2025-12-12 12:38:52 -04:00
|
|
|
|
|
|
|
|
Route::get('/_debug', function () {
|
|
|
|
|
return [
|
|
|
|
|
'fullUrl' => request()->fullUrl(),
|
|
|
|
|
'root' => request()->root(),
|
|
|
|
|
'url()' => url('/'),
|
|
|
|
|
'scheme' => request()->getScheme(),
|
|
|
|
|
'host' => request()->getHost(),
|
|
|
|
|
];
|
|
|
|
|
});
|