From a954741fb3faeb76029e68cabfa8f3f6cc8e1a39 Mon Sep 17 00:00:00 2001 From: omair saleh Date: Fri, 4 Dec 2020 10:33:49 +0800 Subject: [PATCH] include approved po's in the system --- routes/web.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/web.php b/routes/web.php index 6de87a19..9e6b69df 100644 --- a/routes/web.php +++ b/routes/web.php @@ -40,7 +40,7 @@ Route::get('/po-approval', function(){ foreach ($months as $month => $bookings) { echo "

".$month."(".count($bookings).")


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


"; }