@if($ratePlans = $roomType->ratePlans)
@foreach($ratePlans as $ratePlan)
{{$ratePlan->RatePlanName}}
|
|
@if($inventoryRates = $roomType->rateInventories->where('RatePlanId', $ratePlan->RatePlanId)->where('RoomTypeId',$ratePlan->RoomTypeId)->sortBy('InventoryDate'))
@forelse($inventoryRates as $inventoryRate)
|
|
|
|
|
|
@empty
|
@endforelse
@endif
@endforeach
@endif