fix refunded bookings

This commit is contained in:
Omair Saleh
2022-11-24 22:30:39 +08:00
parent ebfcce83ad
commit f683f76981
+3 -3
View File
@@ -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>';
}
});