From b67f0f308182dfe2b6601294a0ae40812a8c2f9c Mon Sep 17 00:00:00 2001 From: omair saleh Date: Tue, 5 Apr 2022 16:21:11 +0800 Subject: [PATCH] update xpo for nov to feb --- routes/web.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/web.php b/routes/web.php index b6d6c696..07c52253 100644 --- a/routes/web.php +++ b/routes/web.php @@ -150,7 +150,7 @@ Route::get('/export/wallet-transactions/f614e339d7058904a831aad742e24d55', 'Expo Route::get('/products', function (\App\Classes\Modules\Exports\Services\ExportsProducts $exportsProducts) { $bookings = Booking::where(function($query){ - return $query->whereMonth('created_at', 07); + return $query->whereMonth('created_at', 7)->whereMonth('created_at', 8)->whereMonth('created_at', 9)->whereMonth('created_at', 10)->whereMonth('created_at', 11)->whereMonth('created_at', 12); })->whereDoesntHave('transactions', function($q){ $q->where('type', TransactionType::PURCHASE_ORDER); $q->whereIn('status', [ApprovalStatus::PENDING_VERIFICATION, ApprovalStatus::APPROVED]);