x1 and x2 reports

This commit is contained in:
omair saleh
2020-12-05 11:58:26 +08:00
parent 38ee75aa6c
commit 4ef3c92c33
+1 -1
View File
@@ -33,7 +33,7 @@ Route::get('/report/x1', function(){
});
foreach($days as $day => $bookings ){
echo "<p>".Carbon::parse($day)->format('d-m-Y').": (".$bookings->sum('bia').")</p>";
echo "<p>".Carbon::parse($day)->format('d-m-Y')." -> Total: <small style='color: green; font-size: large'>".$bookings->sum('bia')." MYR</small></p>";
}
}