How to get route name on visit URL in laravel
How to get route name on visit URL in laravel
We will use programming in this lesson to attempt to solve the "How to get route name on visit URL in laravel".
You can get route name on visit URL in Laravel using request() method. You can use same code snippet in web.php, controller and view file to get the route name from URL In laravel-
Get route name using request() function on visit URL in laravel
//Syntax request()->route()->getName() //Demo code with output Route::get('/get-route-name', function(){ echo request()->route()->getName(); })->name('route.name');
Output:
route.name
This code snippet will help you to get the route name on visit a specific url in laravel. You have to just pass the name to route using name method while defining the route in web.php file.
Just copy/paste code in route\web.php file and visit /get-route-name url after running php artisan serve command to get the current route name.
-
Get route name using request() method on visit URL in laravel view
{{ request()->route()->getName() }}
Output:
home
Using this code snippet you can get the route name of current URL in laravel blade (view) file. You have to just specify the name for a route using name method on route definition in web.php.
If you like what you are reading, please consider buying us a coffee ( or 2 ) as a token of appreciation.
Don't forget to share this article! Help us spread the word by clicking the share button below.
We appreciate your support and are committed to providing you valuable and informative content.
We are thankful for your never ending support.
Random Code Snippet Queries: Laravel
- Return redirect laravel not working
- Run artisan command to generate key in laravel
- Laravel change date format
- Pagination in laravel
- How to display pivot table column value in laravel
- How to get date from created_at field in laravel
- Convert input array to comma-separated string in laravel controller
- How to add a key value pair to existing array in laravel
- How to increment column value of table in Laravel
- Rename Pivot Table in Laravel
- SQLSTATE[42000]: Syntax error or access violation: 1075 Incorrect table definition; there can be only one auto column and it must be defined as a key
- How to get only time from created_at in laravel
- How to check relationship is loaded or not in Laravel
- Laravel form request validation
- Remove public from url in laravel project
- How to implement toggleLike() method in Overtrue\LaravelLike laravel package
- How to get last record from object collection in laravel
- How to display 1 day ago in comments in laravel view
- How to use bootstrap pagination in laravel 8
- How to pass query string with pagination in laravel
- How to pass external link in laravel blade to anchor tag
- How to send email in laravel
- Calculate age from date of birth in Laravel
- Method Illuminate\Http\Request::validated does not exist
- How to pass data to partial view file in laravel