@extends('layouts.admin') @section('title', 'View Booking') @section('content')
{{ ucfirst($booking->status) }}
{{ $booking->notes }}
{{ $progress->description }}
@if($progress->location) {{ $progress->location }} @endif
{{ $booking->user->name }}
{{ $booking->user->email }}
Role: {{ ucfirst($booking->user->role) }}
Created:
{{ $booking->created_at->format('d M Y H:i:s') }}
Last Updated:
{{ $booking->updated_at->format('d M Y H:i:s') }}