From f9aabeda35ced7da2fd56fbac358542af8e93d32 Mon Sep 17 00:00:00 2001 From: omair saleh Date: Mon, 7 Dec 2020 18:15:18 +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 87646264..9cee16cf 100644 --- a/routes/web.php +++ b/routes/web.php @@ -108,7 +108,7 @@ Route::group(['middleware' => ['role:admin']], function() { 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 "

"; + if($i % 10 == 0) echo "

"; } echo "


"; }