@extends('layouts.admin') @section('title','Properties') @section('heading','Property marketplace') @section('content')
@forelse($properties as $property)@empty@endforelse
PropertyProviderPurposePriceStatus
{{ $property->title }}
{{ $property->city }} ยท {{ $property->type?->name }}
{{ $property->vendor?->name }}{{ ucfirst($property->purpose) }}{{ number_format((float)$property->price,2) }}/{{ $property->pricing_period }}{{ $property->status }}@if($property->is_featured) Featured @endifManage
No properties found.

Property types

@csrf
@foreach($types as $type)
@csrf @method('put')
{{ $type->properties_count }} listing(s)
@endforeach

Amenities

@csrf
@foreach($amenities as $amenity)
@csrf @method('put')
{{ $amenity->properties_count }} listing(s)
@endforeach
@endsection