Select::make('decedent_id')
->preload()
->relationship('decedent', 'my_new_field')
->label(__('decedent_id_title'))
->options(Person::where('enabled',true)->where('type','causante')->pluck('my_new_field', 'id'))
Select::make('decedent_id')
->preload()
->relationship('decedent', 'my_new_field')
->label(__('decedent_id_title'))
->options(Person::where('enabled',true)->where('type','causante')->pluck('my_new_field', 'id'))