@extends('layouts.admin') @section('content')
Manage tenant booking requests and status.
| Tenant | Unit | Date | Status | Actions |
|---|---|---|---|---|
|
{{ $booking->user->name }}
{{ $booking->user->email }}
|
{{ $booking->unit->name }} | {{ $booking->created_at->format('d M Y') }} | {{ ucfirst($booking->status) }} | @if($booking->status == 'pending') @else No actions @endif |