“Laravel obtient l'URL de l'itinéraire actuel” Réponses codées

Laravel obtient le nom de l'itinéraire actuel

Route::currentRouteName()
Beautiful Bird

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 la route actuelle Laravel

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

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

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

Laravel obtient l'URL de l'itinéraire actuel

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

Laravel obtient l'URL de l'itinéraire actuel

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

Réponses similaires à “Laravel obtient l'URL de l'itinéraire actuel”

Questions similaires à “Laravel obtient l'URL de l'itinéraire actuel”

Plus de réponses similaires à “Laravel obtient l'URL de l'itinéraire actuel” dans PHP

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code