From 7af5e9ec640c817df45b2f3890a0aab22562ae74 Mon Sep 17 00:00:00 2001 From: dhanabalan Date: Fri, 14 Nov 2025 18:30:16 +0530 Subject: [PATCH] Correct capitalization in invoice data table package count messages --- resources/views/livewire/invoice-data-table.blade.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/resources/views/livewire/invoice-data-table.blade.php b/resources/views/livewire/invoice-data-table.blade.php index 1e68d6f..3862ee9 100644 --- a/resources/views/livewire/invoice-data-table.blade.php +++ b/resources/views/livewire/invoice-data-table.blade.php @@ -3,18 +3,18 @@

@if ($hasSearched) - SERIAL INVOICE DATA TABLE ( No of Packages to scan : {{ $packageCount }} ) + SERIAL INVOICE DATA TABLE ( No of Packages to Scan : {{ $packageCount }} ) @elseif ($materialInvoice) MATERIAL INVOICE DATA TABLE @else @if ($completedInvoice) @if ($isSerial) - SERIAL INVOICE DATA TABLE ( No of Packages to scan : {{ $packageCount }} ) + SERIAL INVOICE DATA TABLE ( No of Packages to Scan : {{ $packageCount }} ) @else MATERIAL INVOICE DATA TABLE @endif @else - INVOICE DATA TABLE ( No of Packages to scan : {{ $packageCount }} ) + INVOICE DATA TABLE ( No of Packages to Scan : {{ $packageCount }} ) @endif @endif