@extends('dashboard.admin.layout') @section('title', 'Properties') @section('page_subtitle', 'Properties list first, with create forms moved into modal entry points.') @section('content')
Properties

Review listings and open the create property form only when needed.

@forelse($properties as $property) @if(!$property->trashed()) @endif @empty @endforelse
IDPreviewTitlePriceLocationStatusActions
{{ $property->id }} @if($property->hero_image) {{ $property->title }} @else No image @endif {{ $property->title }} ${{ number_format($property->price, 2) }} {{ $property->location ?? '-' }} {{ $property->trashed() ? 'Deleted' : ucfirst($property->status) }} @if(!$property->trashed())
@csrf
@else
@csrf
@endif
No properties yet.
{{ $properties->links() }}
@endsection