0

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 !

suresh3
  • 3
  • 3

1 Answers1

0

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.
} 

Source

I hope this will help you ;)

Marvix
  • 179
  • 3
  • 16