laravel get route name from url code example
Example 1: laravel get current route name
Route::currentRouteName()
Example 2: laravel get current route name
Route::getCurrentRoute()->getActionName();
Example 3: laravel get a url using name
$url = route('routeName');
//if there is a param:
$url = route('routeName', ['id' => 1]);
https://laravel.com/docs/5.1/helpers#method-route