Amit should be linkable to users How to make a user name to linkable from Voyager admin, Basically i want to display history of payment and relation of users.
Thanks in advance !
Amit should be linkable to users How to make a user name to linkable from Voyager admin, Basically i want to display history of payment and relation of users.
Thanks in advance !
You can try to override the user attribute in the User model.
public function getUserAttribute($value){
return "<b>$value</a>" // here you can modify the attribute, so you can make a link to the payment.
}
I hope this will help you ;)