diff --git a/app/Classes/Modules/Exports/Services/ExportsCustomersWalletTransactionHistory.php b/app/Classes/Modules/Exports/Services/ExportsCustomersWalletTransactionHistory.php index 20323b00..cb328f46 100644 --- a/app/Classes/Modules/Exports/Services/ExportsCustomersWalletTransactionHistory.php +++ b/app/Classes/Modules/Exports/Services/ExportsCustomersWalletTransactionHistory.php @@ -26,7 +26,7 @@ class ExportsCustomersWalletTransactionHistory implements FromQuery, WithHeading public function __construct(Request $request, $startDate = null, $endDate = null) { $this->request = $request; - $this->startDate = $startDate ? Carbon::parse($startDate)->startOfDay() : Carbon::now()->subMonths(6); + $this->startDate = $startDate ? Carbon::parse($startDate)->startOfDay() : Carbon::now()->subMonths(3); $this->endDate = $endDate ? Carbon::parse($endDate)->endOfDay() : Carbon::now(); }