@extends('layouts.app') @section('content')
Date: {{ $booking->booking_date }}
Status: {{ ucfirst($booking->status) }}
{{-- ✅ Added Payment Info --}}Payment Type: {{ ucfirst($booking->payment_type) }}
Payment Status: {{ ucfirst($booking->payment_status) }}
{{-- 🟢 Approve / Reject (Only if Pending) --}} @if($booking->status == 'pending')No booking requests yet.
@endforelse