“Uzyskaj bieżącą trasę w Blade Laravel” Kod odpowiedzi

Laravel, otrzymuj bieżącą nazwę trasy

Route::currentRouteName()
Beautiful Bird

Laravel, otrzymuj bieżącą nazwę trasy

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

Uzyskaj bieżącą trasę w 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

Uzyskaj bieżącą trasę w Blade Laravel

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

Trasa Laravel uzyskująca dostęp do obecnej trasy

$route = Route::current();

$name = Route::currentRouteName();

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

Odpowiedzi podobne do “Uzyskaj bieżącą trasę w Blade Laravel”

Pytania podobne do “Uzyskaj bieżącą trasę w Blade Laravel”

Więcej pokrewnych odpowiedzi na “Uzyskaj bieżącą trasę w Blade Laravel” w PHP

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu