I am building a Laravel Nova application and want to show a user with image and name.
/**
* The single value that should be used to represent the resource when being displayed.
*
* @var string
*/
public static $title = 'name';
As you can see above, the $title is used to represent the resource, but I want two values, a image (Avatar) and name (Sting).
Is this possible, or is it possible to show an other value like an image, instead of a string?