From 764f242e871c1b346e777b246684f66a41bd0b58 Mon Sep 17 00:00:00 2001 From: edmondlang Date: Wed, 7 Aug 2024 13:13:26 +0800 Subject: [PATCH] fix pending_orders table header --- routes/web.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/routes/web.php b/routes/web.php index a66457a6..e912b49d 100644 --- a/routes/web.php +++ b/routes/web.php @@ -411,9 +411,11 @@ Route::get('/pending_orders', function(){ echo 'Booking'; echo 'Payment Currency'; echo 'Payment Amount'; + echo ''; echo 'Customer'; echo 'Booking Currency'; echo 'Booking Amount'; + echo ''; echo 'Service'; echo 'Payment Updated'; echo 'Cust Supplier Acc Type'; @@ -442,9 +444,11 @@ Route::get('/pending_orders', function(){ echo ''.$booking->marking.''; echo ''.$payment->currency->short_code.''; echo ''.number_format(bcsub($payment->amount, $refunds, 7), 5, '.', '').''; + echo ''; echo ''.$booking->company->reference.''; echo ''.$payment->original_currency->short_code.''; echo ''.number_format(bcsub($payment->original_amount, $original_refunds, 7), 5, '.', '').''; + echo ''; echo ''.$booking->service->name.''; echo ''.$payment->updated_at->diffForHumans().''; echo ''.$bankType.'';