@extends('layouts.master') @section('title','SALES | VIEW PROPERTY') @section('headasset') @include('layouts.head-asset') @stop @section('content')
@include('admin.main-header') @include('admin.sidebar')

{{strtoupper($property->name)}}

PROPERTY DETAILS

@if(Auth::user()->role_id==1)
@endif

AMENITIES

@if($propertyamenity->count()>0) @foreach($propertyamenity as $pm) @php $am=App\Models\AmenityType::find($pm->amenity_type_id); @endphp @if($am) @endif @endforeach @else @endif
Amenity About
{{$am->name}} Total: {{($pm->amenity_count!=null?$pm->amenity_count:"NA")}}
{{$pm->about_amenity}}
{{$pm->status==0?"Inactive":"Active"}}
No Amenity Details Found

PROPERTY IMAGES

@if($propertyimage->count()>0) @foreach($propertyimage as $pi) @php $pit=App\Models\ImageType::find($pi->property_image_type_id); @endphp @if($pit) @endif @endforeach @else @endif
ImageType Preview
{{$pit->name}}
Property Image
No Amenity Details Found

PROPERTY MAP

@include('admin.footer')
@stop @section('jsscript') @include('layouts.jsscript') @stop