add id to url laravel code example
Example 1: current URL without url site laravel
is work
{{Request::path()}}
or
request()->path()
Example 2: laravel signed route
use Illuminate\Support\Facades\URL;
return URL::signedRoute('unsubscribe', ['user' => 1]);