diff --git a/routes/web.php b/routes/web.php index cd7bdc9..7dcd05e 100644 --- a/routes/web.php +++ b/routes/web.php @@ -8,3 +8,13 @@ })->name('home'); Route::get('/', ApplicantForm::class)->name('application'); + +Route::get('/_debug', function () { + return [ + 'fullUrl' => request()->fullUrl(), + 'root' => request()->root(), + 'url()' => url('/'), + 'scheme' => request()->getScheme(), + 'host' => request()->getHost(), + ]; +});