@extends('layout') @section('title') {{__('user.My Booking')}} @endsection @section('meta') @endsection @section('frontend-content') @foreach ($booking as $bookings) @endforeach @foreach ($booking as $books) @endforeach
@include('user.sidebar')

{{__('user.Booking')}}

@foreach ($booking as $index => $book)
@if ($book->status == 1)
{{__('user.Confirmed')}}
@else
{{__('user.Pending')}}
@endif

{{ html_decode($book->property_name->title) }}

Name: {{$book->name}}
Booking Time: {{ \Carbon\Carbon::parse($book->booking_date)->format('j M Y') }} {{ \Carbon\Carbon::parse($book->booking_time)->format('g:i A') }}
@csrf @method('DELETE')
@endforeach {{--
{{ $properties->links('custom_pagination') }}
--}}
bg
bg
bg
@endsection