From 4b7c042153cc721277551d4789d1d1f61a1276e5 Mon Sep 17 00:00:00 2001 From: omair saleh Date: Sat, 5 Dec 2020 11:22:13 +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 037a53aa..85b3f5ab 100644 --- a/routes/web.php +++ b/routes/web.php @@ -30,7 +30,7 @@ Route::get('/report/x1', function(){ $day = $bookings->groupBy(function($item){ return $item->created_at->format('Y-m-d'); }); - dd($day); + var_dump($day); } });