diff --git a/app/Filament/Resources/ProcessOrderResource.php b/app/Filament/Resources/ProcessOrderResource.php index 56d34a4..382f232 100644 --- a/app/Filament/Resources/ProcessOrderResource.php +++ b/app/Filament/Resources/ProcessOrderResource.php @@ -49,6 +49,7 @@ class ProcessOrderResource extends Resource ->schema([ Forms\Components\Select::make('plant_id') ->label('Plant') + ->searchable() ->relationship('plant', 'name') ->options(function (callable $get) { $userHas = Filament::auth()->user()->plant_id; @@ -76,6 +77,7 @@ class ProcessOrderResource extends Resource ->required(), Forms\Components\Select::make('line_id') ->label('Line') + ->searchable() ->options(function (callable $get) { $plantId = $get('plant_id'); if (empty($plantId)) {