“Как получить текущий URL в Ларавеле” Ответ

Laravel Get ток домен

request()->getHost();
TheDutchScorpion

Как получить 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 без сайта URL Laravel

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

Как получить текущий URL в Ларавеле

//get current url
use Illuminate\Support\Facades\Route;
Route::getFacadeRoot()->current()->uri();
//get current full url
$url = url()->current();
Isaac

Получите URL -адрес приложения в Ларавеле

URL::to('/');
Lokesh003Coding

Ларавел получает URL

Example 1: current() with Helper

$currentURL = url()->current();
  
dd($currentURL);
Example 2: full() with Helper(with query string parameters)

$currentURL = url()->full();
    
dd($currentURL);
Example 3: current() with Facade

$currentURL = URL::current();
    
dd($currentURL);
Example 4: full() with Facade(with query string parameters)

$currentURL = URL::full();
    
dd($currentURL);
Example 5: using Request

$currentURL = Request::url();
  
dd($currentURL);
Get Previous URL in Laravel:

$url = url()->previous();
  
dd($url);
Get Current Route in Laravel:


$route = Route::current()->getName();
  
dd($route);
Irfan

Ответы похожие на “Как получить текущий URL в Ларавеле”

Вопросы похожие на “Как получить текущий URL в Ларавеле”

Больше похожих ответов на “Как получить текущий URL в Ларавеле” по PHP

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

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