From 978bff037d8d47c3e9edeab63155508672fe4a08 Mon Sep 17 00:00:00 2001 From: dhanabalan Date: Sat, 19 Apr 2025 12:49:27 +0530 Subject: [PATCH] Displaying transaction grid --- .../Pages/ListInvoiceValidations.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/app/Filament/Resources/InvoiceValidationResource/Pages/ListInvoiceValidations.php b/app/Filament/Resources/InvoiceValidationResource/Pages/ListInvoiceValidations.php index 0ff3f3e..a1284d4 100644 --- a/app/Filament/Resources/InvoiceValidationResource/Pages/ListInvoiceValidations.php +++ b/app/Filament/Resources/InvoiceValidationResource/Pages/ListInvoiceValidations.php @@ -19,11 +19,11 @@ class ListInvoiceValidations extends ListRecords ]; } - //to hide the data from the table - protected function getTableQuery(): \Illuminate\Database\Eloquent\Builder - { - return static::getResource()::getEloquentQuery()->whereRaw('1 = 0'); - } + // //to hide the data from the table + // protected function getTableQuery(): \Illuminate\Database\Eloquent\Builder + // { + // return static::getResource()::getEloquentQuery()->whereRaw('1 = 0'); + // } }