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

تفاصيل الشقة ( {{$tblPropertyApartment->title}})


اسم الشقة {{ $tblPropertyApartment->title }}
الرمز الخاص {{ $tblPropertyApartment->unique_code }}
السعر باليوم {{ $tblPropertyApartment->priceperday }} د.ل
الوصف {{ $tblPropertyApartment->description }}
عدد الضيوف {{ $tblPropertyApartment->no_of_guest }}
إضافة من قِبل المستخدم {{ $tblPropertyApartment->createdBy->full_name}} {{ $tblPropertyApartment->createdBy->contact_no}} - {{ $tblPropertyApartment->createdBy->country_code}}
رقم الشقة {{ $tblPropertyApartment->no_of_apartment }}
الحالة @if($tblPropertyApartment->state_id == 1) Active @elseif($tblPropertyApartment->state_id == 0) Inactive @endif
وقت الدخول {{ $tblPropertyApartment->check_in_time }}
وقت الخروج {{ $tblPropertyApartment->check_out_time }}
وقت الإضافة {{ $tblPropertyApartment->created_on }}
قيمة العربون {{ $tblPropertyApartment->deposit_price }}
@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($ResidenceCondition as $condition)
  • {{ $condition['title'] }}
  • @endforeach

إضافة قانون

@csrf

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

القوانين الفعالة


    @foreach($activeRules as $rule)
  • {{ $rule['title'] }}
  • @endforeach
@endif @if (count($deletedRules) > 0)
@csrf

أرشيف القوانين


    @foreach($deletedRules as $rule)
  • {{ $rule['title'] }}
  • @endforeach
@endif

إضافة سياسة

@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