@extends('layouts.main-layout') @section('title') GST Charge Reports | Dashboard @endsection @section('content')
Date | Cancel Fee | F & B | Mattress Charges | Other | Rent a Car Charges | Room Rent | {{-- @foreach($folioChargeTypes as $i => $chargeTypes){{$chargeTypes->ChargeTypeName}} | @endforeach --}}Total |
---|---|---|---|---|---|---|---|---|
{{$date}} | @php($x = cancellation_charges($date)){{$x ? round($x - ($x / 1.16)) : $x}} | @php($x = food_beverage_charges($date)){{$x ? round($x - ($x / 1.16)) : $x}} | @php($x = mattress_charges($date)){{$x ? round($x - ($x / 1.16)) : $x}} | @php($x = other_charges($date)){{$x ? round($x - ($x / 1.16)): $x}} | @php($x = rent_a_car_charges($date)){{$x ? round($x - ($x / 1.16)) : $x}} | @php($x = get_room_rent($date)){{$x ? round($x - ($x / 1.16)) : $x}} | @php($x = all_folios_for_date($date)){{$x ? round($x - ($x / 1.16)): $x}} | |
Total | @php($x = cancellation_charges_for_range($folioDates)){{round($x - ($x / 1.16))}} | @php($x = food_charges_for_range($folioDates)){{round($x - ($x / 1.16))}} | @php($x = mattress_charges_for_range($folioDates)){{ round($x - ($x / 1.16))}} | @php($x = other_charges_for_range($folioDates)){{round($x - ($x / 1.16))}} | @php($x = car_rent_for_range($folioDates)){{round($x - ($x / 1.16))}} | @php($x = room_rent_for_range($folioDates)){{round($x - ($x / 1.16))}} | @php($x = all_folios_for_range($folioDates)){{round($x - ($x / 1.16))}} |