“Zdobądź obecną trasę Laravela” 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

Trasa Laravel to obecna trasa

Route::currentRouteName()
Route::getCurrentRoute()->getPath();
\Request::route()->getName()
Route::currentRouteName(); //use Illuminate\Support\Facades\Route;
Route::getCurrentRoute()->getActionName();
$uri = $request->path();
Tiago F2

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

Odpowiedzi podobne do “Zdobądź obecną trasę Laravela”

Pytania podobne do “Zdobądź obecną trasę Laravela”

Więcej pokrewnych odpowiedzi na “Zdobądź obecną trasę Laravela” w PHP

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

Przeglądaj inne języki kodu