when I will click on a tag it go to specific url if no id found then go to reference My view
<a href="{{URL::to('user/')}}/?reference={{$user->username}}">
go there
</a>
my route
Route::get('/user/{id}/{reference?}', 'UserController@index')->name('/user');
{{URL::to('user/'.$user->id.'/'.$user->username)}}