I suggest you to use a custom accessor.
Firstly add this in your app model:
getFullNameAttribute() {
return $this->name->first . ' ' . $this->name->last;
}
Then in your laravel nova model access it like this:
Text::make('FullName', 'full_name')
->exceptOnForms(),