Here I am going to share you problem that most of the laravel beginner found when developed a project with laravel. You can get to know about the solution for the issue ‘get current route name path in laravel 5.4’ with this article. Get Current Route Name Path From view (blade template) – You can get the current route name path from view (blade template) by using below code – {{ url()->current() }} // It will return route name with url {{ Request::path() }} // It will return only route…