From 9fd451bbda2fb45bf6d161aa439b7c05a0edff81 Mon Sep 17 00:00:00 2001 From: dhanabalan Date: Mon, 23 Feb 2026 09:33:24 +0530 Subject: [PATCH] Updated line label on report view --- app/Filament/Resources/ProductionPlanResource.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/Filament/Resources/ProductionPlanResource.php b/app/Filament/Resources/ProductionPlanResource.php index f2a1b4e..cdcf05c 100644 --- a/app/Filament/Resources/ProductionPlanResource.php +++ b/app/Filament/Resources/ProductionPlanResource.php @@ -48,6 +48,7 @@ class ProductionPlanResource extends Resource Section::make('') ->schema([ Forms\Components\Select::make('plant_id') + ->label('Plant') ->relationship('plant', 'name') ->required() // ->nullable() @@ -79,6 +80,7 @@ class ProductionPlanResource extends Resource ->hint(fn ($get) => $get('ppPlantError') ? $get('ppPlantError') : null) ->hintColor('danger'), Forms\Components\Select::make('line_id') + ->label('Line') ->relationship('line', 'name') ->required() // ->nullable() @@ -437,7 +439,7 @@ class ProductionPlanResource extends Resource ->sortable() ->searchable(), Tables\Columns\TextColumn::make('line.name') - ->label('Plant') + ->label('Line') ->alignCenter() ->sortable() ->searchable(),