@extends('layouts.app') @section('title', 'Update Available Rooms') @push('styles') @endpush @section('content')

Channel Manager Update Available Rooms

@csrf

Update Available Rooms

«
»
@if(empty($grid['rooms']))

No room types configured yet.

Add rooms in Settings
@else
@foreach($grid['dates'] as $date) @endforeach @foreach($grid['dateKeys'] as $dateKey) @php $state = $grid['isOpen'][$dateKey] ?? 'open'; $otaJson = json_encode($grid['otaAvailability'][$dateKey] ?? []); @endphp @endforeach @foreach($grid['rooms'] as $room) @foreach($grid['dateKeys'] as $dateKey) @endforeach @endforeach @foreach($grid['dateKeys'] as $dateKey) @endforeach @foreach($grid['dateKeys'] as $dateKey) @endforeach
Room{{ $date->format('jS M') }}
Available
{{ $room['name'] }}
Total Available Rooms{{ $grid['totals'][$dateKey] }}
Occupancy Percentage{{ number_format($grid['occupancy'][$dateKey], 0) }}%
@endif
@endsection @push('scripts') @endpush