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

تفاصيل فندق ( {{$TblPropertyBuilding->title}})



اسم العمارة {{ $TblPropertyBuilding->title }}
الرمز الخاص {{ $TblPropertyBuilding->unique_code }}
عدد الشقق {{ $TblPropertyBuilding->numberofapartment }}
العنوان {{ $TblPropertyBuilding->location }}
وقت الإضافة {{ $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

    @foreach($InternalFacilities as $internal)
  • @csrf {{$internal['name']}}
    @endforeach

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