x1 and x2 reports

This commit is contained in:
omair saleh
2020-12-05 12:00:09 +08:00
parent 4ef3c92c33
commit bcd748e1cc
+2 -2
View File
@@ -27,13 +27,13 @@ Route::get('/report/x1', function(){
});
foreach($months as $month => $bookings){
echo "<h1>".Carbon::parse($month)->format('m-Y')."(".$bookings->sum('bia').")</h1>";
echo "<h1>".Carbon::parse($month)->format('m-Y').": <small style='color: green; font-size: larger'>".$bookings->sum('bia')." MYR</small></h1>";
$days = $bookings->groupBy(function($item){
return $item->created_at->format('Y-m-d');
});
foreach($days as $day => $bookings ){
echo "<p>".Carbon::parse($day)->format('d-m-Y')." -> Total: <small style='color: green; font-size: large'>".$bookings->sum('bia')." MYR</small></p>";
echo "<p>".Carbon::parse($day)->format('d-m-Y').": <small style='color: green; font-size: large'>".$bookings->sum('bia')." MYR</small></p>";
}
}