Ларавел Получите текущее название маршрута
Route::currentRouteName()
Beautiful Bird
Route::currentRouteName()
request()->route()->getName()
get URL:
{{ Request::url() }} // http://localhost/path
get path:
{{ Request::path() }} // path
Route::currentRouteName()
Route::getCurrentRoute()->getPath();
\Request::route()->getName()
Route::currentRouteName(); //use Illuminate\Support\Facades\Route;
Route::getCurrentRoute()->getActionName();
$uri = $request->path();
\Route::currentRouteName() == 'my_route_name'