how to get current url in laravel code example
Example 1: laravel get current domain
request()->getHost();
Example 2: how get url in laravel
echo url()->current();
echo url()->full();
echo url()->previous();
Example 3: current URL without url site laravel
is work
{{Request::path()}}
or
request()->path()
Example 4: get app url in laravel
URL::to('/');
Example 5: laravel get a url using name
$url = route('routeName');
$url = route('routeName', ['id' => 1]);
https://laravel.com/docs/5.1/helpers#method-route