@extends('layouts.app') @section('title', 'Booking Details') @section('content')
Customer Name: {{ $booking->customer_name }}
Phone: {{ $booking->customer_phone }}
Reference: {{ $booking->customer_reference ?? '-' }}
Slot: {{ $booking->slot->shift ?? '-' }} ({{ $booking->slot->start_time ?? '-' }} - {{ $booking->slot->end_time ?? '-' }})
Location: {{ $booking->slot->location ?? '-' }}
User: {{ $booking->user->name ?? '-' }}
Stage: {{ ucfirst($booking->stage) }}
Status: {{ ucfirst($booking->status) }}
Extra Data:
{{ json_encode($booking->data, JSON_PRETTY_PRINT) }}
Created At: {{ $booking->created_at->format('Y-m-d H:i') }}
Updated At: {{ $booking->updated_at->format('Y-m-d H:i') }}