@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) P-{{ $slot['slot_number'] }} {{ $displayVrm ?: 'Reserved' }} @else P-{{ $slot['slot_number'] }} Available @endif @endforeach Parking Details Fetching parking details... Parking Slot - Quote Number - VRM - Reserved By - {{-- Booking Date - --}} Customer Information Name - Email - Phone - City / PostCode - Address - Vehicle Information Vehicle - Engine Code - Fuel Type - Engine Size - VIN - @endsection @section('scripts') @endsection
Overview of all 60 parking slots and their current reservation state.
Fetching parking details...