@extends('admin.layout.master')
@section('custom_style')
@endsection
@section('content')
@include('flash-message')
{{__('obs.cash')}}/ {{__('obs.bank')}} {{__('obs.receive')}}
{{request()->get('start_date')}} - {{request()->get('end_date')}}
| {{__('obs.sl')}} |
{{__('obs.hotel')}} |
{{__('obs.cash_receive')}} |
{{__('obs.bank_receive')}} |
{{__('obs.total_receive')}} |
@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
| {{$i++}} |
{{$list['hotel_name']}} |
{{$list['cash_receive']}} |
{{$list['bank_receive']}} |
{{$list['total_receive']}} |
@endforeach
@endif
| Total |
{{$total_cash_receive}} |
{{$total_bank_receive}} |
{{$grand_total_receive}} |
@endsection
@section('script')
@endsection