@extends('layouts.backend-layout') @section('content')
@csrf
@if(count($customer_party_bookings)) @foreach($customer_party_bookings as $key) @endforeach @endif
# Customer Info EventType Event Date Category Person Status Advance Amount Actions
{{ $loop->index +1 }} {{$key->name}}
{{$key->email}}
{{$key->phone}}
{{ $key->event_type }} {{ $key->category }} {{ $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