Answers for "current route laravel 8"

PHP
1

get current route laravel

get URL:
{{ Request::url() }} // http://localhost/path

get path:
{{ Request::path() }} // path
Posted by: Guest on August-23-2021
2

laravel 8 route

Route::get(
    '/user/profile',
    [UserProfileController::class, 'show']
)->name('profile');
Posted by: Guest on March-02-2021

Browse Popular Code Answers by Language