我正在构建一个 Laravel Nova 应用程序,并希望向用户显示图像和名称。
/**
* The single value that should be used to represent the resource when being displayed.
*
* @var string
*/
public static $title = 'name';
正如您在上面看到的,$title 用于表示资源,但我想要两个值,一个图像(Avatar)和一个名称(Sting)。
这是否可能,或者是否可以显示其他值,例如图像,而不是字符串?