diff --git a/routes/web.php b/routes/web.php index 3c44a932..3d865a74 100644 --- a/routes/web.php +++ b/routes/web.php @@ -27,13 +27,13 @@ Route::get('/report/x1', function(){ }); foreach($months as $month => $bookings){ - echo "

".$month."(".$bookings->sum('bia').")




"; + echo "

".$month."(".$bookings->sum('bia').")


"; $days = $bookings->groupBy(function($item){ return $item->created_at->format('Y-m-d'); }); foreach($days as $day => $bookings ){ - echo "
".$day."(".$bookings->sum('bia').")

"; + echo "

".$day."(".$bookings->sum('bia').")

"; } }