laravel get a route by name code example
Example 1: laravel get current route name
Route::currentRouteName()
Example 2: laravel get route
Route::get('foo', function () {
return 'Hello World';
});
Route::currentRouteName()
Route::get('foo', function () {
return 'Hello World';
});