remove failed sort

This commit is contained in:
Russ Long 2022-08-07 13:55:31 -04:00
parent ae21c17f60
commit 2bbb10e55b

View File

@ -33,8 +33,8 @@ class PeoplesChoiceResource extends Resource
->schema([ ->schema([
Select::make('vehicle') Select::make('vehicle')
->label('Vehicle') ->label('Vehicle')
->options(Vehicles::all()->pluck('owner', 'id')->sortBy('owner')), ->options(Vehicles::all()->pluck('owner', 'id'))
//->searchable(), ->searchable(),
TextInput::make('pc_count'), TextInput::make('pc_count'),
]); ]);
} }