debug payment not showing issue

This commit is contained in:
edmondlang
2024-03-01 22:51:56 +08:00
parent dfc2ddd09b
commit b2dd34106c
+2
View File
@@ -973,6 +973,7 @@ Route::get('show-booking-expired', function () {
echo '<th>Payment Method</th>';
echo '<th>BillPlz Response</th>';
echo '<th>Updated At</th>';
echo '<th>Created At</th>';
echo '</tr>';
echo '</thead>';
echo '<tbody>';
@@ -1008,6 +1009,7 @@ Route::get('show-booking-expired', function () {
echo '<td>' . $paymentMethods [$transaction->payment_method] . '</td>';
echo '<td>' . $billplz_status . '</td>';
echo '<td>' . $transaction->updated_at . '</td>';
echo '<td>' . $transaction->created_at . '</td>';
echo '</tr>';
}