@viteReactRefresh @vite('resources/js/bookingFormModule.jsx') @vite('resources/js/singleLocationMap.jsx') @section('scripts') @endsection @if (Auth::check()) @endif
@if ($spaceData->type === 'Day Office') @endif

{{ $spaceData->name }}

@if($spaceData->perHourPrice) £{{ $spaceData->perHourPrice }}/hour @else £{{ $spaceData->wholeDayPrice }}/person per day @endif

{{ $spaceData->type }}

{{ $spaceData['location']->address_street }}, {{ $spaceData['location']->address_city }} {{ $spaceData['location']->address_postcode }}, UK

Capacity: 1 - {{ $spaceData->capacity }} Guests

{{ $spaceData->description }}

    @foreach ($spaceData['amenities'] as $spaceAmenity)
  • {{ str_replace('_', ' ', ucfirst($spaceAmenity->name)) }}
  • @endforeach

Opening Hours

Mon - Fri

{{ date('g:i A', strtotime($spaceData['location']->opening_time)) }} - {{ date('g:i A', strtotime($spaceData['location']->closing_time)) }}

Saturday

Closed

Sunday

Closed

Prices

@if(isset($spaceData->perHourPrice))

Per Hour: £{{ number_format($spaceData->perHourPrice, 2) }} excluding VAT

@endif @if(isset($spaceData->halfDayPrice))

Half day: £{{ number_format($spaceData->halfDayPrice, 2) }} excluding VAT

@endif

Whole day: @if ($spaceData->type === 'Meeting Room') £{{ number_format($spaceData->wholeDayPrice, 2) }} excluding VAT @else £{{ number_format($spaceData->wholeDayPrice, 2) }}/person excluding VAT @endif


For bookings outside of opening hours, please contact us.

Building amenities

@foreach ($spaceData['location']['amenities'] as $locationAmenity) {{-- TODO - Need icon images for all amenities, the code is there --}}
{{ str_replace('_', ' ', $locationAmenity['name']) }} {{ str_replace('_', ' ', $locationAmenity['name']) }}
@endforeach
@if ($spaceData->type === 'Meeting Room') @include('components/component-catering') @endif

Transport Links

Nearest stations:
    @foreach($spaceData['transport_links'] as $transportLink)
  • {{ $transportLink->name }} ({{ $transportLink->distance_in_miles }} miles) @if($transportLink->walking_time) {{ $transportLink->walking_time }} @endif
  • @endforeach
{{-- TODO - FE - Needs to update with connection to google Maps--}}