From 4ef3c92c333020022b5247bdab9d100c5158f9ae Mon Sep 17 00:00:00 2001 From: omair saleh Date: Sat, 5 Dec 2020 11:58:26 +0800 Subject: [PATCH] x1 and x2 reports --- routes/web.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/web.php b/routes/web.php index 90d1c522..72f17c67 100644 --- a/routes/web.php +++ b/routes/web.php @@ -33,7 +33,7 @@ Route::get('/report/x1', function(){ }); foreach($days as $day => $bookings ){ - echo "

".Carbon::parse($day)->format('d-m-Y').": (".$bookings->sum('bia').")

"; + echo "

".Carbon::parse($day)->format('d-m-Y')." -> Total: ".$bookings->sum('bia')." MYR

"; } }