From eaebee83368d9f66d8eb12e09fffb7a347c67b55 Mon Sep 17 00:00:00 2001 From: dhanabalan Date: Tue, 18 Aug 2026 17:01:50 +0530 Subject: [PATCH] Added doc no label name in production characteristic resource page --- .../Resources/ProductionCharacteristicResource.php | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/app/Filament/Resources/ProductionCharacteristicResource.php b/app/Filament/Resources/ProductionCharacteristicResource.php index b8b46fe..472ec30 100644 --- a/app/Filament/Resources/ProductionCharacteristicResource.php +++ b/app/Filament/Resources/ProductionCharacteristicResource.php @@ -235,7 +235,7 @@ class ProductionCharacteristicResource extends Resource ->alignCenter() ->sortable(), Tables\Columns\TextColumn::make('production_order') - ->label('Production Order') + ->label('Production Order / Doc No') ->searchable() ->alignCenter() ->sortable(), @@ -280,15 +280,9 @@ class ProductionCharacteristicResource extends Resource }) ->alignCenter() ->sortable(), - // Tables\Columns\TextColumn::make('inspection_status') - // ->label('Inspection Status') + // Tables\Columns\TextColumn::make('result') + // ->label('Result') // ->searchable() - // ->color(fn (string $state): string => match ($state) { - // 'Ok' => 'success', - // 'Not Ok' => 'danger', - // 'NotOk' => 'danger', - // default => 'gray', - // }) // ->alignCenter() // ->sortable(), Tables\Columns\TextColumn::make('remark') -- 2.49.1