@if($roomTypes->isEmpty())

Нет типов номеров. Создать тип номера

@else @foreach($roomTypes as $type)

{{ $type->name }}

@csrf
@if($type->availabilities->isEmpty())

Нет периодов.

@else @foreach($type->availabilities as $period) @endforeach
С По Статус Цена Действие
{{ $period->start_date }} {{ $period->end_date }} @if($period->is_available) Доступен @else Недоступен @endif {{ $period->price ? number_format($period->price, 2) : '-' }}
@csrf @method('DELETE')
@endif
@endforeach @endif