@extends('layouts.app') @section('content')
{{ $ticket->description }}
| Booking ID | Customer | Quantity | Total Amount | Status | Date |
|---|---|---|---|---|---|
| {{ $booking->id }} | {{ $booking->user->name }} | {{ $booking->quantity }} | Rp {{ number_format($booking->total_amount, 0, ',', '.') }} | {{ ucfirst($booking->status) }} | {{ $booking->created_at->format('d M Y H:i') }} |
| No bookings found | |||||