@extends('admin.layout') @section('content')

Properties

+ Add Property @if(session('success'))
{{ session('success') }}
@endif @forelse($properties as $key => $property) @empty @endforelse
# Title Type Price Location Status Action
{{ $key + 1 }} {{ $property->title }} {{ $property->type->name ?? '-' }} ₹ {{ number_format($property->price) }} {{ $property->location }} @if($property->status == 1) Active @else Inactive @endif Edit
@csrf @method('DELETE')
No properties found
@endsection