@extends('layouts.app') @section('title', $property->title) @section('content')
@if($property->card_image) {{ $property->title }} @else

No image available

@endif

Property Details

{{ $property->bedrooms }}
Bedrooms
{{ $property->bathrooms }}
Bathrooms
{{ $property->formatted_area }}
Total Area

Type: {{ $property->type_name }}
Sort Order: {{ $property->sort_order }}

Status & Display

Status: {{ $property->is_active ? 'Active' : 'Inactive' }}
Mobile Display: {{ $property->display_on_mobile ? 'Yes' : 'No' }}
Homepage Display: {{ $property->display_on_homepage ? 'Yes' : 'No' }}

Property Information

Short Description

{{ $property->short_description }}

Property Details
  • ID: {{ $property->id }}
  • Type: {{ $property->type_name }}
  • Area: {{ $property->formatted_area }}
  • Bedrooms: {{ $property->bedrooms }}
  • Bathrooms: {{ $property->bathrooms }}
  • Created: {{ $property->created_at->format('M d, Y H:i') }}
  • Updated: {{ $property->updated_at->format('M d, Y H:i') }}

Full Description
{!! $property->full_description !!}

Quick Actions

@csrf
@csrf
@csrf
Edit Property
@csrf @method('DELETE')
@if($property->gallery && count($property->gallery) > 0)

Gallery Images ({{ count($property->gallery) }})

@foreach($property->gallery as $index => $image)
@endforeach
@endif
@endsection