“URL w Laravel” Kod odpowiedzi

Jak zdobyć adres URL w Laravel

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

URL w Laravel

use Illuminate\Support\Facades\URL;

echo URL::current();
NachooCh

Laravel otrzyma adres URL za pomocą nazwy

$url = route('routeName');

//if there is a param:
$url = route('routeName', ['id' => 1]);

https://laravel.com/docs/5.1/helpers#method-route
Fragile Fish

Odpowiedzi podobne do “URL w Laravel”

Pytania podobne do “URL w Laravel”

Więcej pokrewnych odpowiedzi na “URL w Laravel” w PHP

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu