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 "


"; }