“Holen Sie sich die aktuelle Route in Blade Laravel” Code-Antworten

Laravel Get aktueller Routenname

Route::currentRouteName()
Beautiful Bird

Laravel Get aktueller Routenname

request()->route()->getName()
mvmrik

Holen Sie sich die aktuelle Route in Blade Laravel

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
Gblend

Holen Sie sich die aktuelle Route in Blade Laravel

<p> Path: {{ Request::path() }} </p>
Gblend

Laravel -Route zugreift auf die aktuelle Route

$route = Route::current();

$name = Route::currentRouteName();

$action = Route::currentRouteAction();
Cooperative Crab

Ähnliche Antworten wie “Holen Sie sich die aktuelle Route in Blade Laravel”

Fragen ähnlich wie “Holen Sie sich die aktuelle Route in Blade Laravel”

Weitere verwandte Antworten zu “Holen Sie sich die aktuelle Route in Blade Laravel” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen