@extends('Admin.layouts.app') @section('title', 'Booking Detail') @section('content')
| Booking ID | #{{ $booking->id }} |
|---|---|
| Status | {{ $booking->status }} |
| Type | {{ $booking->type }} |
| Date & Time | {{ $booking->booking_date }} {{ $booking->start_time }} |
{{ $booking->providers?->name ?? 'N/A' }}
{{ $booking->providers?->phone ?? 'N/A' }}
{{ $booking->seekers?->name ?? 'N/A' }}
{{ $booking->seekers?->phone ?? 'N/A' }}No attachments.
@elseBy: {{ $booking->rating_detail->name }}
Rating: @for($i = 1; $i <= 5; $i++) @endfor
Review: {{ $booking->rating_detail->review ?? 'No review given' }}
@elseNo rating yet.
@endifAddress: {{ $booking->seekers->address }}
No address or location found.
@endif