Answers for "how to access route in laravel on name"

PHP
0

laravel route Accessing The Current Route

$route = Route::current();

$name = Route::currentRouteName();

$action = Route::currentRouteAction();
Posted by: Guest on July-24-2021
2

laravel is route name

// Check if route is ***
Request::route()->named("YourRouteNameView")
Posted by: Guest on January-15-2021

Code answers related to "how to access route in laravel on name"

Browse Popular Code Answers by Language