@extends('layouts.app') @section('content')
@include('flash::message')

تفاصيل العمارة ( {{$TblPropertyBuilding->title}})



اسم العمارة {{ $TblPropertyBuilding->title }}
الرمز الخاص {{ $TblPropertyBuilding->unique_code }}
عدد الشقق {{ $TblPropertyBuilding->numberofapartment }}
المدينة {{ $TblPropertyBuilding->city?->name ?? 'N/A' }}
المنطقة {{ $TblPropertyBuilding->zone?->name ?? 'N/A' }}
وقت الإضافة {{ $TblPropertyBuilding->created_on }}
إضافة من قِبل المستخدم {{ $TblPropertyBuilding->createdBy->full_name}} {{ $TblPropertyBuilding->createdBy->contact_no}} - {{ $TblPropertyBuilding->createdBy->country_code}}
الحالة @if($TblPropertyBuilding->state_id == 1) Active @elseif($TblPropertyBuilding->state_id == 0) Inactive @endif
خط الطول {{ $TblPropertyBuilding->latitude }}
خط العرض {{ $TblPropertyBuilding->longitude}}

@csrf @method('DELETE') إضافة صور +
@foreach($pictures as $picture)
{{ $picture->alt_text }} @if($picture->is_publish == 1) Published @elseif($picture->is_publish == 0) Unpublished @endif
@endforeach
@csrf @method('DELETE')
    @foreach($InternalFacilities as $internal)
  • {{$internal['name']}}
  • @endforeach

@csrf @method('DELETE')
    @foreach($ExternalFacilities as $external)
  • {{$external['name']}}
  • @endforeach

إضافة شرط للحجز

@csrf

@csrf @method('DELETE')


    @foreach($terms as $term)
  • {{ $term['title'] }}
  • @endforeach

إضافة سياسة

@csrf

@if (count($activePolicies) > 0)
@csrf @method('DELETE')

السياسات الفعالة


    @foreach($activePolicies as $policy)
  • {{ $policy['title'] }}
  • @endforeach
@endif @if (count($deletedPolicies) > 0)
@csrf

أرشيف السياسات


    @foreach($deletedPolicies as $policy)
  • {{ $policy['title'] }}
  • @endforeach
@endif
@endsection