I have the following code and I need to be able to concatenate the variable data.id as I have it as an example in the text of the label a, since it is a second parameter that receives this route (Working with Laravel) the problem is generated by the keys, but I can not concatenate this variable
mRender: function (data, type, row) {
return '<a href="{{ route('user.edit', ) }}" class="btn btn-info btn-xs">hola'+data.id+'</a>'
}