mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-22 05:53:58 +00:00
fix refunded bookings
This commit is contained in:
+3
-3
@@ -473,17 +473,17 @@ Route::get('/refund/fix', function(){
|
||||
|
||||
echo '<h3>Not Placed ('.count($notPlaced).')</h3>';
|
||||
foreach ($notPlaced as $booking){
|
||||
echo '<a href="'.route('booking.details').'" target="_blank">'.$booking->reference.'</a><br>';
|
||||
echo '<a href="'.route('booking.details').'" target="_blank">'.$booking->marking.'</a><br>';
|
||||
}
|
||||
|
||||
echo '<h3>Placed ('.count($placed).')</h3>';
|
||||
foreach ($placed as $booking){
|
||||
echo '<a href="'.route('booking.details').'" target="_blank">'.$booking->reference.'</a><br>';
|
||||
echo '<a href="'.route('booking.details').'" target="_blank">'.$booking->marking.'</a><br>';
|
||||
}
|
||||
|
||||
echo '<h3>Complete ('.count($completed).')</h3>';
|
||||
foreach ($completed as $booking){
|
||||
echo '<a href="'.route('booking.details').'" target="_blank">'.$booking->reference.'</a><br>';
|
||||
echo '<a href="'.route('booking.details').'" target="_blank">'.$booking->marking.'</a><br>';
|
||||
}
|
||||
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user