x1 and x2 reports

This commit is contained in:
omair saleh
2020-12-05 11:50:37 +08:00
parent 135e6a7139
commit c65d8d2308
+2 -2
View File
@@ -27,13 +27,13 @@ Route::get('/report/x1', function(){
});
foreach($months as $month => $bookings){
echo "<h1>".$month."(".$bookings->sum('bia').")</h1><br><br><br>";
echo "<h1>".$month."(".$bookings->sum('bia').")</h1><br>";
$days = $bookings->groupBy(function($item){
return $item->created_at->format('Y-m-d');
});
foreach($days as $day => $bookings ){
echo "<h6>".$day."(".$bookings->sum('bia').")</h6><br>";
echo "<h3>".$day."(".$bookings->sum('bia').")</h3>";
}
}