Capacity configuration

Zones & boarding rooms

Surcharges, daily limits, species eligibility, climate controls and nightly rates.

@if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

Mobile service zones

@csrf
@foreach($zones as $zone)
{{ $zone->name }} · {{ $zone->emirate }}AED {{ number_format($zone->base_surcharge,2) }} · {{ $zone->max_daily_bookings }}/day
@endforeach

Boarding room master

@csrf
@foreach(['Dog','Cat','Rabbit','Bird','Reptile','Small mammal','All'] as $species)@endforeach
@foreach($rooms as $room)
{{ $room->code }}{{ str($room->status)->headline() }}

{{ $room->room_type }} · {{ collect($room->species_suitability)->join(', ') }}

AED {{ number_format($room->nightly_rate,2) }}/night

{{ $room->climate_controlled ? 'Climate controlled · ' : '' }}{{ $room->camera_equipped ? 'Camera equipped' : '' }}

@endforeach