@extends('admin.layouts.app') @section('title', 'Property Details') @section('content')
Type
{{ $property->property_type_label }}
Listing
{{ $property->listing_type === 'sale' ? 'For Sale' : 'For Rent' }}
Area
{{ number_format($property->area_size) }} {{ $property->area_unit }}
Bedrooms
{{ $property->bedrooms }}
Bathrooms
{{ $property->bathrooms }}
Facing
{{ ucfirst($property->facing) }}
Furnishing
{{ ucfirst(str_replace('-', ' ', $property->furnishing)) }}
{{ $inquiry->name }}
{{ $inquiry->phone }} | {{ $inquiry->email }}
{{ Str::limit($inquiry->message, 150) }}
@endif{{ $property->formatted_price }}
@if ($property->listing_type === 'rent')per month
@endif{{ $property->full_location }}
@if ($property->address){{ $property->address }}
@endif{{ $property->rera_number }}
@endif @endif @if ($property->bank_approved)Ownership: {{ ucfirst($property->ownership_type) }}
@endifID: {{ $property->id }}
Slug: {{ $property->slug }}
Created: {{ $property->created_at->format('M d, Y H:i') }}
Updated: {{ $property->updated_at->format('M d, Y H:i') }}
@if ($property->user)Owner: {{ $property->user->name }}
@endif