mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-19 04:23:55 +00:00
fix refunded bookings
This commit is contained in:
+3
-3
@@ -477,17 +477,17 @@ Route::get('/refund/fix', function(){
|
||||
}
|
||||
}
|
||||
|
||||
echo '<h3>Not Placed ('.count($notPlaced).')</h3>';
|
||||
echo '<h3>Customer Paid ('.count($notPlaced).')</h3>';
|
||||
foreach ($notPlaced as $booking){
|
||||
echo '<a href="'.route('booking.details', $booking->marking).'" target="_blank">'.$booking->marking.'</a><br>';
|
||||
}
|
||||
|
||||
echo '<h3>Placed ('.count($placed).')</h3>';
|
||||
echo '<h3>White Form Generated ('.count($placed).')</h3>';
|
||||
foreach ($placed as $booking){
|
||||
echo '<a href="'.route('booking.details', $booking->marking).'" target="_blank">'.$booking->marking.'</a><br>';
|
||||
}
|
||||
|
||||
echo '<h3>Complete ('.count($completed).')</h3>';
|
||||
echo '<h3>China Bankslip Uploaded ('.count($completed).')</h3>';
|
||||
foreach ($completed as $booking){
|
||||
echo '<a href="'.route('booking.details', $booking->marking).'" target="_blank">'.$booking->marking.'</a><br>';
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user