From 23a5e9596b1669711eb0c0c4f8e1397a3392f4c0 Mon Sep 17 00:00:00 2001 From: omair saleh Date: Mon, 7 Dec 2020 12:05:40 +0800 Subject: [PATCH] pending customer po grouped by customer --- routes/web.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/web.php b/routes/web.php index 6a35c37e..2cc50932 100644 --- a/routes/web.php +++ b/routes/web.php @@ -103,7 +103,7 @@ Route::group(['middleware' => ['role:admin']], function() { foreach ($customers as $customer => $bookings) { echo "

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


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


"; }