@extends('dashboard.admin.layout') @section('title', 'Properties') @section('page_subtitle', 'Properties list first, with create forms moved into modal entry points.') @section('content')
| ID | Preview | Title | Price | Location | Status | Actions |
|---|---|---|---|---|---|---|
| {{ $property->id }} |
@if($property->hero_image)
|
{{ $property->title }} | ${{ number_format($property->price, 2) }} | {{ $property->location ?? '-' }} | {{ $property->trashed() ? 'Deleted' : ucfirst($property->status) }} | @if(!$property->trashed()) @else @endif |
| No properties yet. | ||||||