@extends('layouts.master') @section('title', 'My Properties - HomesInKerala') @section('content')
@if(session('success'))
{{ session('success') }}
@endif

My Properties

Create and manage your own property listings.

@include('frontend.agent.partials.nav')
@forelse($properties as $property) @empty @endforelse
Property Location Price Status Actions
{{ $property->title }}
{{ $property->type?->name }} ยท {{ $property->category?->name }}
{{ $property->city?->name }}, {{ $property->district?->name }} {!! \App\Support\SiteSettings::currencySymbol() !!}{{ number_format((float) $property->price) }} {{ Str::headline($property->status) }}
Edit
@csrf @method('DELETE')
No properties found.
{{ $properties->links() }}
@endsection