@extends('layouts.app') @section('title', 'Owners') @section('content')

Owners

Manage property owners and their KYC documents
Add Owner
{{-- Search --}}
@if(request('search')) @endif
@include('partials._sort_th', ['column' => 'name', 'label' => 'Name']) @include('partials._sort_th', ['column' => 'city', 'label' => 'City']) @include('partials._sort_th', ['column' => 'created_at', 'label' => 'Added On']) @forelse($owners as $owner) @empty @endforelse
#MobileFor Sale For RentActions
{{ $owner->id }} {{ $owner->name }} @if($owner->email)
{{ $owner->email }}
@endif
{{ $owner->mobile }} {{ $owner->city ?? '—' }} {{ $owner->for_sale_count }} {{ $owner->for_rent_count }} {{ $owner->created_at->format('d M Y') }} @if(Auth::user()->isAdmin())
@csrf @method('DELETE')
@endif
No owners found. @if(request('search')) Clear search @endif
@if($owners->hasPages()) @endif
@endsection