appendToOutput(Carbon::now() . ' : Billplz Failled Callback cron started.'); $this->outputArray = []; $start = new Carbon(); $approvalStatusArray = ApprovalStatus::APPROVAL_STATUS_ID; $transactions = Transaction::where('type', TransactionType::PAYMENT)->where('payment_method', PaymentMethodType::PAYMENT_GATEWAY)->whereIn('status', [ApprovalStatus::REJECTED, ApprovalStatus::PENDING_VERIFICATION])->get(); $totalTransactions = count($transactions); $counter = 1; $totalAmount = 0; foreach ($transactions as $transaction){ $response = Http::withBasicAuth(config('billplz.api_key').':', '')->get(config('billplz.base_url').'/api/v3/bills/'.$transaction->payment_reference); if($response->successful()){ $data = $response->json(); if($data['paid']){ $totalAmount += $transaction->amount; $this->appendToOutput($counter . ' of ' . $totalTransactions . '. Order: '. $transaction->owner->owner->owner->reference . ' - Date: '.$transaction->owner->created_at->format('d-m-Y').' - Amount: '. $transaction->amount . '. Status: ' . $approvalStatusArray[$transaction->status]); } else { // $totalAmount += $transaction->amount; // $this->appendToOutput($counter . ' of ' . $totalTransactions . '. Order: '. $transaction->owner->owner->owner->reference . ' - Date: '.$transaction->owner->created_at->format('d-m-Y').' - Amount: '. $transaction->amount); } }else{ $this->appendToOutput("billplz error
"); } $counter++; } $end = new Carbon(); $elapsedTime = $start->diff($end)->format('%H:%I:%S'); $this->appendToOutput(Carbon::now() . ' : Done Billplz Failled Callback. ElapsedTime: ' . $elapsedTime . '. Total: ' . $totalAmount); $this->output = json_encode($this->outputArray); } public function appendToOutput($string) { $this->outputArray[] = $string; $this->info($string); } public function getOutput() { return $this->output; } }