{!! html()->form('POST', route('BuildingPictures.store'))->open() !!} {!! Form::hidden('id', $TblPropertyBuilding->id, ['class' => 'form-control']) !!} {!! html()->submit('حفظ')->class('btn btn-primary mr-4') !!} @lang('إلغاء') {!! html()->form()->close() !!}

معلومات الفندق

إسم الفندق : {{ $TblPropertyBuilding->title }}
الرمز الخاص : {{ $TblPropertyBuilding->unique_code }}
عدد الشقق : {{ $TblPropertyBuilding->numberofapartment }}
العنوان : {{ $TblPropertyBuilding->location }}
وقت الإضافة: {{ $TblPropertyBuilding->created_on }}
إضافة من قِبل المستخدم : {{ $TblPropertyBuilding->createdBy->full_name}}
الحالة : {{ $TblPropertyBuilding->state_id }}
خط الطول : {{ $TblPropertyBuilding->latitude }}
خط العرض : {{ $TblPropertyBuilding->longitude }}

المرافق الداخلية للفندق

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

    المرافق الخارجية للفندق

    @foreach($ExternalFacilities as $Efacility)
  • {{ $Efacility['name'] }}
  • @endforeach

    شقق هذه العمارة

    @php $i=1; @endphp @foreach( $apartments as $apartment ) @php $i++; @endphp @endforeach
    # الشقة الرمز الخاص السعر باليوم الوصف العدد المسموح check_in_time check_out_time deposit_price عرض تعديل
    {{$i}} {{ $apartment->title }} {{ $apartment->unique_code }} {{ $apartment->priceperday }} {{ $apartment->description }} {{ $apartment->no_of_guest }} {{ $apartment->check_in_time }} {{ $apartment->check_out_time }} {{ $apartment->deposit_price }}
    @push('page_scripts') @endpush