route current url laravel for locale code example
Example 1: get current route in blade laravel
<p> Path: {{ Request::path() }} </p>
Example 2: get app url in laravel
URL::to('/');
<p> Path: {{ Request::path() }} </p>
URL::to('/');