diff --git a/app/Classes/Modules/Exports/Services/ExportsInvoiceTransactions.php b/app/Classes/Modules/Exports/Services/ExportsInvoiceTransactions.php index 85df0be8..d890dfba 100644 --- a/app/Classes/Modules/Exports/Services/ExportsInvoiceTransactions.php +++ b/app/Classes/Modules/Exports/Services/ExportsInvoiceTransactions.php @@ -94,7 +94,8 @@ class ExportsInvoiceTransactions implements FromQuery, WithHeadings, WithHeading return [ '<>', - $row->updated_at->format('m/d/Y H:m'), + // $row->updated_at->format('m/d/Y H:m'), + $row->updated_at->format('m/d/Y'), $company->debtor, $row->type === TransactionType::PAYMENT ? $booking->marking : $company->reference, '', @@ -129,7 +130,8 @@ class ExportsInvoiceTransactions implements FromQuery, WithHeadings, WithHeading return [ '<>', - Carbon::parse($row['created_at'])->format('m/d/Y H:m'), + // Carbon::parse($row['created_at'])->format('m/d/Y H:m'), + Carbon::parse($row['created_at'])->format('m/d/Y'), $row['debtor_code'], $row['type'] === ShippingTransactionType::PAYMENT ? $row['order_reference'] : $row['marking'], '', @@ -149,7 +151,8 @@ class ExportsInvoiceTransactions implements FromQuery, WithHeadings, WithHeading return [ 'Transaction Not Found', - $transaction->posting_date->format('m/d/Y H:m'), + // $transaction->posting_date->format('m/d/Y H:m'), + $transaction->posting_date->format('m/d/Y'), $transaction->transaction_description.' - '.$transaction->transaction_description_2, $statementTransactionOwner->system, '',