@extends('layouts.app') @push('styles') @endpush @section('content')

{{ $pageTitle }}

@if(session('success'))
{{ session('success') }}
@endif @if(!empty($isResort))
@endif
@csrf
{{ !empty($isResort) ? 'جدول وحدات الشاليهات' : 'جدول أنواع الوحدات' }}
@if(!empty($isResort)) عرض {{ $chalets->count() }} من أصل {{ $chalets->total() }} شاليه @endif
@if(!empty($isResort)) @if($chalets->isEmpty()) @else @foreach($chalets as $chalet) @foreach($unitTypes as $type) @php $existingUnit = $chalet->units->where('unit_type_id', $type->id)->first(); @endphp @endforeach @endforeach @endif @else @foreach($unitTypes as $type) @php $existingUnit = $property->units->where('unit_type_id', $type->id)->first(); @endphp @endforeach @endif
اسم الشاليه / نوع الوحدة العدد الإجمالي المعروض حالياً
لا توجد نتائج تطابق بحثك.
{{ $chalet->title }}
{{ $type->name }}
التصنيف: {{ $type->property_type_name }}
@endsection