@extends('layouts.dashboard') @section('title', $property->title) @section('header', $property->title) @section('sidebar') @include('super-admin.partials.sidebar') @endsection @section('content')
← Back to Properties
@if($property->images->count() > 0)
{{ $property->title }}
@endif
@if($property->images->count() > 1)

Images

@foreach($property->images as $image)
Property image
@endforeach
@endif

{{ $property->title }}

{{ $property->address }}, {{ $property->city }}

{{ number_format($property->price, 0) }} {{ $property->currency }}
{{ ucfirst($property->status) }} @if($property->is_system_owned) System-Owned @else {{ $property->company->name ?? 'N/A' }} @endif @if($property->visibility === 'featured') ⭐ Featured @elseif($property->visibility === 'public') 🌐 Public @else 🔒 Private @endif
Type

{{ ucfirst($property->type) }}

@if($property->bedrooms)
Bedrooms

{{ $property->bedrooms }}

@endif @if($property->bathrooms)
Bathrooms

{{ $property->bathrooms }}

@endif
@if($property->description)

Description

{{ $property->description }}

@endif
Edit
@csrf @method('DELETE')
@endsection