Repeater::make('employeeDesignations')
->schema([
Select::make('department_id')
->multiple()
->options(
User::all()->pluck('name', 'id')
)
->required(),
Select::make('term_id')
->options(
Term::all()->pluck('name', 'id')
)
->required(),
])
->columns(2)
Repeater::make('employeeDesignations')
->schema([
Select::make('department_id')
->multiple()
->options(
User::all()->pluck('name', 'id')
)
->required(),
Select::make('term_id')
->options(
Term::all()->pluck('name', 'id')
)
->required(),
])
->columns(2)