@extends('layouts.admin') @section('content')
| Label | {{ $parkingSpot->label }} |
|---|---|
| Property | {{ optional($parkingSpot->property)->name ?? '—' }} |
| Type | {{ \App\Models\ParkingSpot::TYPE_SELECT[$parkingSpot->type] ?? $parkingSpot->type }} |
| Status | {{ \App\Models\ParkingSpot::STATUS_SELECT[$parkingSpot->status] ?? $parkingSpot->status }} |
| Notes | {{ $parkingSpot->notes }} |
| By | Visitor | Plate | From | To | Status |
|---|---|---|---|---|---|
| {{ optional($r->requester)->name ?? '—' }} | {{ $r->visitor_name }} | {{ $r->vehicle_plate }} | {{ optional($r->reserved_from)->format('Y-m-d H:i') }} | {{ optional($r->reserved_to)->format('Y-m-d H:i') }} | {{ ucfirst($r->status) }} |
| No reservations. | |||||