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

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

@if(isset($reservations) && !empty($reservations)) @foreach($reservations as $row) @endforeach @endif
# Date Time Name Person Details Persons Status Created At
{{ $i++ }} {{date("j F", strtotime($row->booking_date))}}
{{date('h:i A', strtotime($row->booking_time))}}
@if($row->customer != '') {{ucwords($row->name)}} @else {{ucwords($row->name)}} @endif {{ $row->mobile }}
{{ $row->email }}
{{ $row->person }} @if($row->verify_booking == 0) Pending @elseif($row->verify_booking == 1) Accepted @elseif($row->verify_booking == 2) Rejected @endif {{date('d-M-Y', strtotime($row->created_at))}}
{{date('h:i A', strtotime($row->created_at))}}
@section('js') @endsection @endsection