diff --git a/routes/web.php b/routes/web.php index 153f2a51..87646264 100644 --- a/routes/web.php +++ b/routes/web.php @@ -103,9 +103,12 @@ Route::group(['middleware' => ['role:admin']], function() { echo "

Total Customers: ".count($customers)."

"; echo "

Total Po Pending Customer Update: ".count($bookings)."

"; foreach ($customers as $customer => $bookings) { + $i = 0; echo "

".$bookings[0]->user->marking."(".count($bookings).")


"; foreach ($bookings as $booking) { + $i += 1; echo "".$booking->id." / ".$booking->created_at." https://exchange.cief-malaysia.com/booking/". $booking->id . "/upload-po
"; + if($i % 20 == 0) echo "

"; } echo "


"; }