laravel get route from name code example
Example 1: laravel get current route name
Route::currentRouteName()
Example 2: laravel get route
Route::get('foo', function () {
return 'Hello World';
});
Example 3: laravel get current route name
Route::getCurrentRoute()->getActionName();