“Route d'URL actuelle Laravel” Réponses codées

Laravel obtient une URL actuelle

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

Obtenez un itinéraire actuel à 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 actuelle sans site URL Laravel

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

Obtenez un itinéraire actuel à Blade Laravel

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

Route d'URL actuelle Laravel

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

Réponses similaires à “Route d'URL actuelle Laravel”

Questions similaires à “Route d'URL actuelle Laravel”

Plus de réponses similaires à “Route d'URL actuelle Laravel” dans PHP

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code