{{$room['rmno']}} |
{{$room['rmtype']}} |
{{ @$room['qty_tdy'] ?? 0 }} |
{{ @$room['pax_tdy'] ?? 0 }} |
{{ (@$room['revenue_tdy']) ?? 0 }} |
{{ (($perc_revenue_tdy)) ?? 0.00 }} |
{{ @$room['qty_mtd'] ?? 0 }} |
{{ @$room['pax_mtd'] ?? 0 }} |
{{ (@$room['revenue_mtd']) ?? 0 }} |
{{ (($perc_revenue_mtd)) ?? 0.00 }} |
{{ @$room['qty_ytd'] ?? 0 }} |
{{ @$room['pax_ytd'] ?? 0 }} |
{{ (@$room['revenue_ytd']) ?? 0 }} |
{{ (($perc_revenue_ytd)) ?? 0.00 }} |
@endforeach
@if ($filter_by == 2)
|
Total |
{{ $total_qty_tdy }} |
{{ $total_pax_tdy }} |
{{ ($total_room['revenue_tdy'][$akey]) }} |
{{ (($total_perc_revenue_tdy)) }} |
{{ $total_qty_mtd }} |
{{ $total_pax_mtd }} |
{{ ($total_room['revenue_mtd'][$akey]) }} |
{{ (($total_perc_revenue_mtd)) }} |
{{ $total_qty_ytd }} |
{{ $total_pax_ytd }} |
{{ ($total_room['revenue_ytd'][$akey]) }} |
{{ (($total_perc_revenue_ytd)) }} |
@endif
@php
// TOTAL ALL
// Total Percent Revenue
$total_all_perc_revenue_tdy += $total_perc_revenue_tdy;
$total_all_perc_revenue_mtd += $total_perc_revenue_mtd;
$total_all_perc_revenue_ytd += $total_perc_revenue_ytd;
// Total Percent Revenue
$total_all_pax_tdy += $total_pax_tdy ;
$total_all_pax_mtd += $total_pax_mtd ;
$total_all_pax_ytd += $total_pax_ytd ;
// Total Percent Revenue
$total_all_qty_tdy += $total_qty_tdy ;
$total_all_qty_mtd += $total_qty_mtd ;
$total_all_qty_ytd += $total_qty_ytd ;
@endphp
@endforeach