sort test

This commit is contained in:
Russ Long 2022-08-07 13:46:27 -04:00
parent 56b6180432
commit ae21c17f60

View File

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