“Aktuelle URL -Route Laravel” Code-Antworten

Laravel bekommen aktuelle 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

Holen Sie sich die aktuelle Route in 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

Aktuelle URL ohne URL -Site Laravel

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

Holen Sie sich die aktuelle Route in Blade Laravel

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

Aktuelle URL -Route Laravel

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

Ähnliche Antworten wie “Aktuelle URL -Route Laravel”

Fragen ähnlich wie “Aktuelle URL -Route Laravel”

Weitere verwandte Antworten zu “Aktuelle URL -Route Laravel” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen