Tables\Filters\SelectFilter::make('collections')
->label('Collections')
->multiple()
->options([
'Private collections' => AccountCollection::ownedByCurrentUser()->private()->orderBy('name')->pluck('name', 'id')->all(),
'Public collections' => AccountCollection::public()->orderBy('name')->pluck('name', 'id')->all(),
]),
Tables\Filters\SelectFilter::make('collections')
->label('Collections')
->multiple()
->options([
'Private collections' => AccountCollection::ownedByCurrentUser()->private()->orderBy('name')->pluck('name', 'id')->all(),
'Public collections' => AccountCollection::public()->orderBy('name')->pluck('name', 'id')->all(),
]),