“URL в Ларавеле” Ответ

Как получить 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

URL в Ларавеле

use Illuminate\Support\Facades\URL;

echo URL::current();
NachooCh

Laravel получите URL -адрес с использованием имени

$url = route('routeName');

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

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

Ответы похожие на “URL в Ларавеле”

Вопросы похожие на “URL в Ларавеле”

Больше похожих ответов на “URL в Ларавеле” по PHP

Смотреть популярные ответы по языку

Смотреть другие языки программирования