@extends('admin.layout.master') @section('custom_style') @endsection @section('content') @include('flash-message')
{{__('obs.cash_bank_receive')}}
{{__('obs.from')}}
{{__('obs.to')}}
@include("frontdesk.report.report_header")

{{__('obs.cash')}}/ {{__('obs.bank')}} {{__('obs.receive')}}  {{request()->get('start_date')}} - {{request()->get('end_date')}}

@if (!empty($filter_data)) @php $i =1 ; $total_cash_receive = 0; $total_bank_receive = 0; $grand_total_receive = 0; @endphp @foreach ($filter_data as $list) @php $total_cash_receive += $list['cash_receive']; $total_bank_receive += $list['bank_receive']; $grand_total_receive += $list['total_receive']; @endphp @endforeach @endif
{{__('obs.sl')}} {{__('obs.hotel')}} {{__('obs.cash_receive')}} {{__('obs.bank_receive')}} {{__('obs.total_receive')}}
{{$i++}} {{$list['hotel_name']}} {{$list['cash_receive']}} {{$list['bank_receive']}} {{$list['total_receive']}}
Total {{$total_cash_receive}} {{$total_bank_receive}} {{$grand_total_receive}}
@endsection @section('script') @endsection