“текущий URL -маршрут Laravel” Ответ

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

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

Текущий URL без сайта URL Laravel

is work
{{Request::path()}}
or
request()->path()
SAMER SAEID

Получить текущий маршрут в Blade Laravel

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

текущий URL -маршрут Laravel

\Route::current()
############### OR ####################
$request->getRequestUri()
Lokesh003Coding

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

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

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

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

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