@extends('frontend.layouts.booking') @section('title', __('Choose a Facility')) @section('content')

{{ __('Select a facility') }}

@if($places->isEmpty())
{{ __('No facilities are available at the moment.') }}
@else
@foreach($places as $place) @endforeach
@endif
@endsection @section('page_scripts') @endsection