From 85746af6f726168087698bd887e056372e8afd18 Mon Sep 17 00:00:00 2001 From: dhanabalan Date: Wed, 2 Jul 2025 15:13:47 +0530 Subject: [PATCH] Updated operator_id position to end --- app/Filament/Exports/InvoiceValidationExporter.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Filament/Exports/InvoiceValidationExporter.php b/app/Filament/Exports/InvoiceValidationExporter.php index e9695d4..a5d5504 100644 --- a/app/Filament/Exports/InvoiceValidationExporter.php +++ b/app/Filament/Exports/InvoiceValidationExporter.php @@ -54,6 +54,8 @@ class InvoiceValidationExporter extends Exporter ->label('BATCH NUMBER'), ExportColumn::make('quantity') ->label('QUANTITY'), + ExportColumn::make('operator_id') + ->label('OPERATOR ID'), ExportColumn::make('created_at') ->label('CREATED AT'), //->dateTimeFormat('d-m-Y H:i:s'), @@ -64,8 +66,6 @@ class InvoiceValidationExporter extends Exporter ->enabledByDefault(false) ->label('DELETED AT'), //->dateTimeFormat('d-m-Y H:i:s'), - ExportColumn::make('operator_id') - ->label('OPERATOR ID'), ]; }