@extends('layouts.front') @push('css') @endpush @section('content') @includeIf('partials.user.header')
@includeIf('partials.user.sidebar')

@lang('Restaurant Booking Request')

@lang('All Bookings')

@foreach ($restaurants as $key=>$restaurant)
{{ $restaurant->user->name }}{{ $restaurant->user->created_at->format('d M Y') }}
  • @if ($restaurant->status == 0) @lang('Pending') @elseif($restaurant->status == 1) @lang('Approved') @else @lang('Rejected') @endif
@lang('Listing Item'): {{ $restaurant->listing->name }}
@lang('Booking Date'): {{ Carbon\Carbon::parse($restaurant->checkin_date)->format('d M Y')}}
@lang('Member'): {{ $restaurant->adults }} @lang('Adults'), {{ $restaurant->kids }} @lang('Child')
@lang('Mail'): {{ $restaurant->user->email }}
@lang('Phone'): {{ $restaurant->user->phone }}
@endforeach
@php echo $gs->copyright; @endphp
@endsection @push('js') @endpush