@extends('layouts.main-layout') @section('title') Charge Summary Report | Dashboard @endsection @section('content')
Date | Booking No | Guest Name | Description | Total | @else
---|---|---|---|---|
Cash | Card | Bank Transfer | Total | {{$chargeTypes->ChargeTypeName}} | @endforeach --}} @if(request()->start_date) @if(request()->View != 'summary') @if (count($folio_date) > 0) @foreach ($folio_date as $folio)
{{$folio->FolioDate}} | {{$folio->BookingId}} | {{$folio->booking->BookerFirstName}} | {{$folio->Description}} | {{ round( $folio->Amount)}} | {{ round( cash_total($folioDates) )}} | {{ round(card_total($folioDates) )}} | {{ round( bank_transfer_total($folioDates) )}} | {{ round( all_payment_total($folioDates) )}} | @endif @endif