@extends('layouts.app') @section('content') @section('css') @endsection

{{ isset($title)?$title:'Reports' }}

All Reservations

{{number_format(round($all_reservations_count,2))}}

Web

{{number_format(round($web_reservations_count,2))}}

App

{{number_format($app_reservations_count)}}

@if(isset($reservations) && !empty($reservations)) @foreach($reservations as $row) @endforeach @endif
# Date Name Person Email Mobile Status
{{ $i++ }}
{{ $row->booking_date }}
{{ $row->booking_time }}
@if($row->customer_id != '') {{ucwords($row->name)}} @else {{ucwords($row->name)}} @endif {{ $row->person }} {{ $row->email }} {{ $row->mobile }} @if($row->verify_booking == 1) Verified @else Unverified @endif
@section('js') @endsection @endsection