Forms\Components\Repeater::make('policies')
->relationship()
->schema([
Forms\Components\Hidden::make('partner_id')
->default(Filament::getTenant()->id),
Forms\Components\Hidden::make('client_id'),
Forms\Components\Select::make('policy_type_id')
->label('Policy Type')
->columnSpan(3)
->options(PolicyType::all()->pluck('name', 'id'))
->required(),
//...
])
->addActionLabel('Add Another Policy')
->defaultItems(1)
Forms\Components\Repeater::make('policies')
->relationship()
->schema([
Forms\Components\Hidden::make('partner_id')
->default(Filament::getTenant()->id),
Forms\Components\Hidden::make('client_id'),
Forms\Components\Select::make('policy_type_id')
->label('Policy Type')
->columnSpan(3)
->options(PolicyType::all()->pluck('name', 'id'))
->required(),
//...
])
->addActionLabel('Add Another Policy')
->defaultItems(1)