{{__('admin.Booking Details')}}

{{__('admin.Booking List')}}
@csrf @method('PUT')
{{__('admin.Name')}} {{ html_decode($booking->name) }}
{{__('admin.Email')}} {{ html_decode($booking->email) }}
{{__('admin.Phone')}} {{ html_decode($booking->phone) }}
{{__('admin.Property')}} {{ html_decode($booking->property->title) }}
{{__('admin.Country')}} {{ html_decode($booking->country) }}
{{__('admin.City')}} {{ html_decode($booking->city) }}
{{__('admin.Zip Code')}} {{ html_decode($booking->zip_code) }}
{{__('admin.Message')}} {{ html_decode($booking->comment) }}
{{__('admin.Booking Date')}} {{ \Carbon\Carbon::parse($booking->booking_date)->format('H:i A, d-m-Y') }}
{{__('admin.Status')}} @if ($booking->status==1) {{__('admin.Confirmed')}} @else {{__('admin.Pending')}} @endif
{{__('admin.Change Status')}}
{{__('admin.Update Status')}}