“Laravel, otrzymuj bieżącą nazwę trasy” Kod odpowiedzi

Laravel, otrzymuj bieżącą nazwę trasy

Route::currentRouteName()
Beautiful Bird

Laravel, otrzymuj bieżącą nazwę trasy

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

Zdobądź obecną trasę Laravela

get URL:
{{ Request::url() }} // http://localhost/path

get path:
{{ Request::path() }} // path
hirohito

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

Laravel, otrzymuj bieżącą nazwę trasy

Route::getCurrentRoute()->getActionName();
Adventurous Ant

Odpowiedzi podobne do “Laravel, otrzymuj bieżącą nazwę trasy”

Pytania podobne do “Laravel, otrzymuj bieżącą nazwę trasy”

Więcej pokrewnych odpowiedzi na “Laravel, otrzymuj bieżącą nazwę trasy” w PHP

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

Przeglądaj inne języki kodu