From 9fde5db903ff9b75943394e6d65389edb2034c45 Mon Sep 17 00:00:00 2001 From: Omair Saleh Date: Thu, 24 Nov 2022 22:44:45 +0800 Subject: [PATCH] fix refunded bookings --- routes/web.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/routes/web.php b/routes/web.php index bc956601..ba8bd29d 100644 --- a/routes/web.php +++ b/routes/web.php @@ -477,17 +477,17 @@ Route::get('/refund/fix', function(){ } } - echo '

Not Placed ('.count($notPlaced).')

'; + echo '

Customer Paid ('.count($notPlaced).')

'; foreach ($notPlaced as $booking){ echo ''.$booking->marking.'
'; } - echo '

Placed ('.count($placed).')

'; + echo '

White Form Generated ('.count($placed).')

'; foreach ($placed as $booking){ echo ''.$booking->marking.'
'; } - echo '

Complete ('.count($completed).')

'; + echo '

China Bankslip Uploaded ('.count($completed).')

'; foreach ($completed as $booking){ echo ''.$booking->marking.'
'; }