“Laravel dostaje ścieżkę URL” 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

Poprzedni URL Laravel

1. The cleanest way seems to be using the url() helper:
	{{ url()->previous() }}

2. URL::previous() works for me in my Laravel 5.1 project. Here is Laravel 5.1 
  doc for previous() method, which is accessible through URL Facade.

3. You can still try alternatives, in your views you can do:

	{{ redirect()->getUrlGenerator()->previous() }}
						OR
	{{ redirect()->back()->getTargetUrl() }}
Lokesh003

Obecny adres URL bez strony URL Laravel

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

Laravel, otrzymuj ostatnią prośbę GET

{{ url()->previous() }}
Viruscom1000

Laravel dostaje ścieżkę URL

$currentURL = URL::current(); PHP.
$url = URL::to("/"); or use $url = url('/'); PHP.
$route = Route::current()->getName(); PHP.
$prefix = Request::route()->getPrefix(); PHP.
Shadow

Laravel dostaje adres 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

Odpowiedzi podobne do “Laravel dostaje ścieżkę URL”

Pytania podobne do “Laravel dostaje ścieżkę URL”

Więcej pokrewnych odpowiedzi na “Laravel dostaje ścieżkę URL” w PHP

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

Przeglądaj inne języki kodu