@extends('layouts.xiamen-restaurant') @section('content')

Account

Party Booking History

@if(count($customer_party_bookings)) @foreach($customer_party_bookings as $key) @endforeach @endif
# Customer Info EventType Event Date Person Status Advance Amount Actions
{{ $loop->index +1 }} {{$key->name}}
{{$key->email}}
{{$key->phone}}
{{ $key->event_type }} {{ $key->event_date }} {{ $key->person }} @if($key->status =="Pending")
Pending
@elseif($key->status =="Approved")
Approved
@elseif($key->status =="Canceled")
Canceled
@endif
{{ $key->advance_amount }}
{{ $customer_party_bookings->links("pagination::bootstrap-4") }}
@endsection