“Laravel Get URL -адрес текущего маршрута” Ответ

Ларавел Получите текущее название маршрута

Route::currentRouteName()
Beautiful Bird

Laravel получите ток 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

Получить ток -маршрут Laravel

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

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

Получить текущий маршрут в 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 Get URL -адрес текущего маршрута

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

Laravel Get URL -адрес текущего маршрута

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

Ответы похожие на “Laravel Get URL -адрес текущего маршрута”

Вопросы похожие на “Laravel Get URL -адрес текущего маршрута”

Больше похожих ответов на “Laravel Get URL -адрес текущего маршрута” по PHP

Смотреть популярные ответы по языку

Смотреть другие языки программирования