@extends('layouts.backend-layout') @section('content')
@csrf
@if(count($customer_table_bookings)) @foreach($customer_table_bookings as $key) @endforeach @endif
# Customer Info Category Date Person Status Actions
{{ $loop->index +1 }} {{$key->name}}
{{$key->email}}
{{$key->phone}}
{{ $key->category }} {{ $key->date }} {{ $key->person }} @if($key->status =="Pending")
Pending
@elseif($key->status =="Approved")
Approved
@elseif($key->status =="Canceled")
Canceled
@endif
{{$customer_table_bookings->links("pagination::bootstrap-4")}}
@endsection