Select::make('record_type_id')
->label(__('record_type'))
->options(RecordType::all()->pluck('description', 'id'))
->hintAction(
Action::make('record_type_create')
->url('/record-types/create')
->icon('heroicon-m-plus')
->modalContent()
->requiresConfirmation()
)
Select::make('record_type_id')
->label(__('record_type'))
->options(RecordType::all()->pluck('description', 'id'))
->hintAction(
Action::make('record_type_create')
->url('/record-types/create')
->icon('heroicon-m-plus')
->modalContent()
->requiresConfirmation()
)