@extends('layouts.dashboard') @section('title', __('messages.booking_details')) @section('header', __('messages.booking_details')) @section('content') @if(session('success'))
{{ $booking->name }}
{{ $booking->email }}
{{ $booking->phone }}
{{ $booking->preferred_date ? \Carbon\Carbon::parse($booking->preferred_date)->format('F d, Y') : 'N/A' }}
{{ date('g:i A', strtotime($booking->preferred_time)) }}
{{ $booking->message }}
{{ $booking->property->address }}, {{ $booking->property->city }}
{{ number_format($booking->property->price, 0) }} {{ $booking->property->currency ?? 'TZS' }}
{{ __('messages.created') ?? 'Created' }}
{{ $booking->created_at->format('M d, Y g:i A') }}
{{ __('messages.confirmed') ?? 'Confirmed' }}
{{ $booking->confirmed_at->format('M d, Y g:i A') }}
{{ __('messages.cancelled') ?? 'Cancelled' }}
{{ $booking->cancelled_at->format('M d, Y g:i A') }}