@extends('layouts.app') @section('title', 'Landmark') @section('content')
@error('message')

{{ $message }}

@enderror

Upcoming Company Bookings

@if(isset($upcomingBookings)) @if(count($upcomingBookings) === 0)

You currently have no upcoming bookings. Browse our spaces

@endif @foreach($upcomingBookings as $upcoming) @include('components.account.bookings-card', ['booking' => $upcoming, 'upcoming' => true]) @endforeach @endif

Previous Company Bookings

@if(isset($pastBookings)) @if(count($pastBookings) === 0)

You currently have no previous bookings. Browse our spaces

@endif @foreach($pastBookings as $past) @include('components.account.bookings-card', ['booking' => $past, 'upcoming' => false]) @endforeach @endif

Cancelled Company Bookings

@if(isset($cancelledBookings)) @if(count($cancelledBookings) === 0)

You currently have no cancelled bookings. Browse our spaces

@endif @foreach($cancelledBookings as $cancelled) @include('components.account.bookings-card', ['booking' => $cancelled, 'upcoming' => false]) @endforeach @endif
@endsection