@extends('layouts.main-layout') @section('title') Charge Summary Report | Dashboard @endsection @section('content')
Date | Room Rent | F&B | Mattress | Other | Revenue | GST | Total | {{-- @foreach($folioChargeTypes as $i => $chargeTypes){{$chargeTypes->ChargeTypeName}} | @endforeach --}}
---|---|---|---|---|---|---|---|---|
{{$date}} | {{ get_room_rent($date) - (get_room_rent($date) * 0.138)}} | {{ food_beverage_charges($date) - (food_beverage_charges($date) * 0.138) }} | {{ mattress_charges($date) - (mattress_charges($date) * 0.138 ) }} | {{ other_charges($date) - ( other_charges($date) * 0.138) }} | {{ all_folios_for_date($date) - (all_folios_for_date($date) * 0.138) }} | {{ all_folios_for_date($date) * 0.138}} | {{all_folios_for_date($date)}} | |
Total | {{ room_rent_for_range($folioDates) - (room_rent_for_range($folioDates) * 0.138) }} | {{ food_charges_for_range($folioDates) - (food_charges_for_range($folioDates) * 0.138 ) }} | {{ mattress_charges_for_range($folioDates) - (mattress_charges_for_range($folioDates) * 0.138) }} | {{ other_charges_for_range($folioDates) - (other_charges_for_range($folioDates) * 0.138)}} | {{ all_folios_for_range($folioDates) - (all_folios_for_range($folioDates) * 0.138 ) }} | {{ (all_folios_for_range($folioDates) * 0.138 ) }} | {{all_folios_for_range($folioDates)}} |