@extends('admin.layout.master') @section('title', 'Admin Properties Management') @section('content')

Properties List

{{-- Add Property --}}
@forelse ($properties as $property) @empty @endforelse
SN Title Owner Address Type Image Actions
{{ $loop->iteration }} {{ $property->title }} {{ $property->user->name ?? 'N/A' }}
{{ $property->user->email ?? '' }}
{{ Str::limit($property->address, 50) }} {{ $property->type }} @if ($property->image) Property Image @else No Image @endif
{{-- View --}} Edit
@csrf @method('DELETE')
No properties found.
{{-- Pagination --}}
{{ $properties->links() }}
@endsection