@extends('admin.layouts.master') @section('title', 'Reserve Parking | Vogue Technics') @section('styles') @endsection @section('content')

Reserve Parking

Overview of all 60 parking slots and their current reservation state.

Available : {{ $availableCount }} Reserved : {{ $reservedCount }} Capacity : {{ $capacity }}
@foreach ($parkingSlots as $slot) @php $reservation = $slot['reservation']; $quote = $reservation?->quote; $vehicle = $quote?->vehicle; $displayVrm = $vehicle?->vrm ?: $quote?->vrm; @endphp
@if ($reservation) @else
P-{{ $slot['slot_number'] }}
Available
@endif
@endforeach
@endsection @section('scripts') @endsection