Section::make()->schema([
Wizard::make()
->schema([
Wizard\Step::make(__('Information About you'))
->schema([
Section::make(__('Positions'))
->description(__('Which position(s) most interests you?'))
->schema([
Repeater::make('positions')
->relationship('positions')
->schema([
Select::make('staff_position_id')
->label('Position')
->options(StaffPosition::all()->pluck('title', 'id')->toArray())
->searchable()
->required(),
]),
])
->columnSpan(1),
])
])
->contained(false)
->skippable(),
])->relationship('staffDetails')
Section::make()->schema([
Wizard::make()
->schema([
Wizard\Step::make(__('Information About you'))
->schema([
Section::make(__('Positions'))
->description(__('Which position(s) most interests you?'))
->schema([
Repeater::make('positions')
->relationship('positions')
->schema([
Select::make('staff_position_id')
->label('Position')
->options(StaffPosition::all()->pluck('title', 'id')->toArray())
->searchable()
->required(),
]),
])
->columnSpan(1),
])
])
->contained(false)
->skippable(),
])->relationship('staffDetails')