“Laravel otrzymuje bieżący adres URL trasy” Kod odpowiedzi

Laravel, otrzymuj bieżącą nazwę trasy

Route::currentRouteName()
Beautiful Bird

Laravel otrzymuje bieżący adres URL

// Get the current URL without the query string...
echo url()->current();

// Get the current URL including the query string...
echo url()->full();

// Get the full URL for the previous request...
echo url()->previous();
Mohamad

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

Laravel otrzymuje bieżący adres URL trasy

@if(Request::url() === 'your url here')
    // code
@endif
Mind Hack Dev

Laravel otrzymuje bieżący adres URL trasy

if (Request::is('admin/*'))
{
    // code
}
Mind Hack Dev

Odpowiedzi podobne do “Laravel otrzymuje bieżący adres URL trasy”

Pytania podobne do “Laravel otrzymuje bieżący adres URL trasy”

Więcej pokrewnych odpowiedzi na “Laravel otrzymuje bieżący adres URL trasy” w PHP

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

Przeglądaj inne języki kodu