Forms\Components\Select::make('employee_id')->label('recipient')
->options(function(){
return Employee::query()->active()
->pluck('name', 'id')
->toBase()
->put('other', 'other')
->toArray();
})
->reactive()
->required(),
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)