@section('title') Parking Dashboard @stop @section('content')

Parking Dashboard Logout

@if (Session::has('success'))
{{ Session::get('success') }}
@endif
Apartment
{{ $tenant->apartment }}
Building
{{ $tenant->building->address }}
Nights Used
{{ $tenant->nights_used }}/{{ $tenant->building->total_nights }}
Create Parking Request

Active Parking Requests

@foreach ($parking_requests as $p) @endforeach
License Plate Make Model Colour Start Date End Date
{{ $p->car->license_plate }} {{ $p->car->make }} {{ $p->car->model }} {{ $p->car->colour }} {{ $p->start_date }} {{ $p->end_date }}
@stop