Test run a long running query with pdf upload to S3 bucket

This commit is contained in:
Dillon Ngo
2024-06-22 16:54:34 +08:00
parent 598faae3c6
commit 2e45969f9a
@@ -82,7 +82,7 @@
$marking = $transaction->owner->marking;
} else {
$description = "Payment <br>" . $transaction->bill_no;
$marking = App\Models\Transaction::where('payment_reference', $transaction->bill_no)->first()->owner->marking;
$marking = \App\Models\Transaction::where('payment_reference', $transaction->bill_no)->first()->owner->marking;
}
$outgoing = number_format($transaction->amount, $roundOff);
break;
@@ -103,7 +103,7 @@
$current_running_balance = floatval($current_running_balance) + floatval($incoming) - floatval($outgoing);
$current_running_balance = number_format($current_running_balance, $roundOff);
@endphp
<tr>
<td width="5%" class="center top">{{ $key + 1 }}</td>