Added debug route
This commit is contained in:
parent
8724c69eba
commit
82bb4969b8
|
|
@ -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(),
|
||||
];
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in a new issue