@extends('Dashboard.layouts.master') @section('title','Bookings | List') @section('css') @endsection @section('content')
{{-- --}} @if(count($bookings) == 0) @endif @foreach ($bookings as $key => $booking) {{-- --}} @endforeach
No.UUID User Name Nb of seats Experience Experience Package Amount {{__('forms.status')}} Paid Status Reserved at {{__('forms.actions')}}
No data Found
{{ ++$key }}{{ $booking->uuid }} {{ $booking->user->first_name . ' ' . $booking->user->last_name }} {{ $booking->nb_seats }} {{ $booking?->experience?->title }} hi {{ $booking?->experience_feature?->title }} {{ number_format($booking->amount , 1) }} $
{{$booking->status}}
{{$booking->paid_status}}
{{Helper::change_timezone( $booking->added_at)}} @can('booking-delete')
@csrf @method("DELETE")
@endcan
@endsection @section('scripts') @endsection