Answers for "get route url in laravel"

PHP
0

current URL without url site laravel

is work
{{Request::path()}}
or
request()->path()
Posted by: Guest on October-24-2020
1

current url route laravel

\Route::current()
############### OR ####################
$request->getRequestUri()
Posted by: Guest on February-02-2021
2

laravel route

Route::get('user/profile', [UserProfileController::class, 'show'])->name('profile');
Posted by: Guest on October-07-2020

Code answers related to "get route url in laravel"

Browse Popular Code Answers by Language