В документации сказано , что вы можете переопределить метод заголовка ресурса:
/**
* Get the value that should be displayed to represent the resource.
*
* @return string
*/
public function title()
{
return $this->name;
}
Для отображения некоторых форм вы можете использовать:
BelongsTo::make('SomeModel', 'somemodel', 'App\Nova\SomeModel')
->display(function($someModel){
return $someModel->id.' wow so custom, much id';
}),