How to Get Current Route Name?
In Laravel 4 I was able to get the current route name using... Route::currentRouteName() How can I do it in Laravel 5? Try this Route::getCurrentRoute()->getPath(); or \Request::route()->getName() from v5.+ use Illuminate\Support\Facades\Route; $currentPath= Route::getFacadeRoot()->current()->uri(); Laravel 5.3 Route::currentRouteName(); //use Illuminate\Support\Facades\Route; Or if you need the action name Route::getCurrentRoute()->getActionName(); You can find everything about laravel Routes in the Laravel API: http://laravel.com/api/5.0/Illuminate/Routing/Router.html http://laravel.com/api