->actions([
Tables\Actions\Action::make('collections')
->label('Manage collections')
->icon('heroicon-o-rectangle-stack')
->slideOver()
->modalWidth(MaxWidth::Medium)
->modalIcon('heroicon-o-rectangle-stack')
->form([
Forms\Components\Select::make('collections')
->label('Collections')
->multiple()
->relationship('collections', 'name')
->options(AccountCollection::mine()->pluck('name', 'id'))
->required(),
]),
])
->actions([
Tables\Actions\Action::make('collections')
->label('Manage collections')
->icon('heroicon-o-rectangle-stack')
->slideOver()
->modalWidth(MaxWidth::Medium)
->modalIcon('heroicon-o-rectangle-stack')
->form([
Forms\Components\Select::make('collections')
->label('Collections')
->multiple()
->relationship('collections', 'name')
->options(AccountCollection::mine()->pluck('name', 'id'))
->required(),
]),
])