@extends('admin.layout.master') @section('title','Frontdesk Report || '.$report_title) @section('content')
@include("frontdesk.report.report_header")
Report Date: From 2021-06-27 to 2021-07-03
@forelse ($all_data as $key=>$ad) @empty @endforelse
Sl Agent Check In No Voucher Guest Name Resv Type Room Total Night Check-In Date Check-Out Date Bill Commision Paid Refund Due
{{$key}} {{$ad->get_agent_info->name_eng}} {{$ad->checkin_code}} @foreach($ad->get_guest_info as $gi) {{$gi->voucher_no}} @endforeach @foreach($ad->get_guest_info as $gi) {{$gi->name}} @endforeach @if($ad->type == 1) By Room @else By Bad @endif @foreach ($ad->get_checkin_info as $chn_info) {{$chn_info->get_room_info->room_number}} @if(!$loop->last)
@endif @endforeach
@foreach ($ad->get_checkin_info as $chn_info) {{$chn_info->check_in_time}} @if(!$loop->last)
@endif @endforeach
@foreach ($ad->get_checkin_info as $chn_info) {{$chn_info->check_out_time}} @if(!$loop->last)
@endif @endforeach
{{$ad->bills}} {{$ad->commission}} {{$ad->receive}} {{$ad->refund}} {{$ad->bills-$ad->receive}}
There Are no Data On This Date
@include("frontdesk.report.report_footer")
@endsection