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