“ruta de URL actual Laravel” Código de respuesta

Laravel obtiene URL actual

// 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

Obtenga la ruta actual en 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 actual sin sitio de URL Laravel

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

Obtenga la ruta actual en Blade Laravel

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

ruta de URL actual Laravel

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

Respuestas similares a “ruta de URL actual Laravel”

Preguntas similares a “ruta de URL actual Laravel”

Más respuestas relacionadas con “ruta de URL actual Laravel” en PHP

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código