E-Invoice - Report name update

This commit is contained in:
Dillon Ngo
2025-11-19 16:02:33 +08:00
parent 9f05caed03
commit 986143b16e
@@ -57,7 +57,7 @@ class ExportController
public function walletTopUpDepositEntry(Request $request){
[$startDate, $endDate] = $this->getValidatedDates($request);
$exporter = new ExportsWalletTopUpDepositEntryReport($startDate, $endDate);
return $this->handleExport($exporter, 'Exchange Wallet Top Up - AR Deposit Entry.xls');
return $this->handleExport($exporter, 'WALLET TOP UP REPORT [Wallet Deposit Received].xls');
}
private function getValidatedDates(Request $request): array