diff --git a/routes/web.php b/routes/web.php index ce3bd545..ea49b102 100644 --- a/routes/web.php +++ b/routes/web.php @@ -101,8 +101,7 @@ Route::group(['middleware' => ['role:admin']], function() { }); echo "

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

"; foreach ($customers as $customer => $bookings) { - dd($bookings); - echo "

".$customer."(".count($bookings).")


"; + echo "

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


"; foreach ($bookings as $booking) { echo "".$booking->id." ".$booking->user->marking." / ".$booking->created_at."
"; }