fix refunded bookings

This commit is contained in:
Omair Saleh
2022-11-24 22:44:45 +08:00
parent 5964342db5
commit 9fde5db903
+3 -3
View File
@@ -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>';
}