@extends('layouts.admin') @section('content')
Dewan: {{ $booking->dewan->name }}
Event: {{ $booking->event_name }}
Date: {{ \Carbon\Carbon::parse($booking->date)->format('d M Y') }}
Total: RM{{ number_format($booking->total_amount, 2) }}
Status: {{ ucfirst(str_replace('_', ' ', $booking->status)) }}
Deposit Receipt: View Deposit
@elseNo deposit receipt was uploaded.
@endif @if($booking->payment_receipt_path)Full Payment Receipt: View Full Payment
@endifThis booking is confirmed and fully paid.
@elseif($booking->status === 'rejected')This booking has been rejected.
@endif ← Back to all bookings