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

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


{!! Form::open(['route' => ['tblPropertyApartments.destroy', $tblPropertyApartment->id], 'method' => 'delete']) !!} {!! Form::button('حذف ', [ 'type' => 'submit', 'class' => 'border-0 bg-0 mb-2 float-left', 'onclick' => 'return confirm("'.__('هل متأكد من الحذف؟').'")' ]) !!} {!! Form::close() !!}
اسم الشقة {{ $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 }}
إضافة صور +
@foreach($pictures as $picture) @php $id = $picture->id; @endphp
{{ $picture->alt_text }} @php $id = $picture->id; @endphp @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