@extends('layouts.app') @section('content')
| Equipment | Quantity | Booking Date | Booking Time | {{-- NEW --}}Return Date | Return Time | {{-- NEW --}}Location | {{-- NEW --}}Status | Reason | {{-- NEW --}}
|---|---|---|---|---|---|---|---|---|
| {{ $booking->equipment->name }} | {{ $booking->quantity }} | {{ \Carbon\Carbon::parse($booking->date_of_booking)->format('F j, Y') }} | {{ $booking->booking_time ?? '-' }} | {{-- NEW --}}{{ \Carbon\Carbon::parse($booking->date_of_return)->format('F j, Y') }} | {{ $booking->return_time ?? '-' }} | {{-- NEW --}}{{ $booking->location ?? '-' }} | {{-- NEW --}}{{ $booking->status ?? 'Pending' }} | @if($booking->status === 'Rejected') {{ $booking->rejection_reason ?? 'No reason provided' }} @else @endif |
| No bookings yet. | {{-- updated colspan --}}||||||||