Laravel obtient le nom de l'itinéraire actuel
Route::currentRouteName()
Beautiful Bird
Route::currentRouteName()
request()->route()->getName()
get URL:
{{ Request::url() }} // http://localhost/path
get path:
{{ Request::path() }} // path
Get the current url
here using the Request::url() method. It will return the entire URL, but strip the query string from it.
<p> Url: {{ Request::url() }} </p>
Output
Url: http://localhost:8000/post/demo
<p> Path: {{ Request::path() }} </p>
Route::getCurrentRoute()->getActionName();