@extends('frontend.layouts.booking') @section('title', __('Select Service')) @section('content')

{{ __('Select a service at :gym', ['gym' => $place->name]) }}

@if($categories->isEmpty())
{{ __('No services are available at this gym at the moment.') }}


{{ __('Choose another gym') }}
@else
@foreach($categories as $category) @endforeach @if($place->enable_daypass) @endif
@if(!$categories->isEmpty()) {{ __('Back') }} @endif
@endif
@endsection @section('page_scripts') @endsection