diff --git a/app/Filament/Resources/CarShowWinnerResource.php b/app/Filament/Resources/CarShowWinnerResource.php index 60b48b2..df6aea3 100644 --- a/app/Filament/Resources/CarShowWinnerResource.php +++ b/app/Filament/Resources/CarShowWinnerResource.php @@ -32,11 +32,11 @@ class CarShowWinnerResource extends Resource ->schema([ Select::make('vehicle') ->label('Vehicle') - ->options(Vehicles::all()->pluck('owner', 'year', 'make', 'model', 'id')) + ->options(Vehicles::all()->pluck('owner', 'id')) ->searchable(), Select::make('category') ->label('Category') - ->options(CarShowCategory::all()->pluck('category_name', 'vehicle_type', 'id')) + ->options(CarShowCategory::all()->pluck('category_name', 'id')) ->searchable(), ]); }