@extends('admin.layouts.app') @section('title', 'Edit Property') @section('breadcrumb')
Add floor plan images for this property. They will appear on the property detail page.
@if($property->floorPlans->isNotEmpty())| Title | Preview | Action |
|---|---|---|
| {{ $fp->title ?: '—' }} |
@if(str_starts_with($fp->image_path ?? '', 'http'))
|
Add documents (PDF, etc.) for this property. They will appear on the property detail page.
@if($property->attachments->isNotEmpty())| Title | File | Action |
|---|---|---|
| {{ $att->title ?: $att->file_name }} | {{ $att->file_name }} |
Add nearby points of interest (schools, metro, etc.) for this property.
@if($property->nearby->isNotEmpty())| Name | Type | Distance | Action |
|---|---|---|---|
| {{ $n->name }} | {{ $n->type ?: '—' }} | {{ $n->distance ? $n->distance . ' km' : '—' }} |