Select::make('contact_id')->label('Contact')
->options(function (callable $get) {
return Contact::find($get('contact_id'))->pluck('email', 'id');
}),
Select::make('contact_id')->label('Contact')
->options(function (callable $get) {
return Contact::find($get('contact_id'))->pluck('email', 'id');
}),