@extends('admin.layouts.app')
@section('title', 'Property Documents')
@section('breadcrumb')
Properties
Documents
@endsection
@section('heading', 'Property Documents')
@section('subheading', 'Manage property documents and legal papers.')
@section('content')
| Property |
Document Name |
Type |
File Size |
Uploaded By |
Date |
Actions |
@foreach ([
['property' => '3 BHK Luxury Apartment', 'doc' => 'Brochure_3BHK_Bandra.pdf', 'type' => 'Brochure', 'size' => '2.4 MB', 'by' => 'Raj Mehta', 'date' => '14 Feb 2025'],
['property' => 'Premium Villa with Pool', 'doc' => 'Title_Deed_Juhu.pdf', 'type' => 'Title Deed', 'size' => '1.8 MB', 'by' => 'Priya Sharma', 'date' => '13 Feb 2025'],
['property' => 'Commercial Office Space', 'doc' => 'NOC_BKC.pdf', 'type' => 'NOC', 'size' => '856 KB', 'by' => 'Arjun Verma', 'date' => '12 Feb 2025'],
['property' => '2 BHK Apartment', 'doc' => 'Legal_Agreement_Koramangala.pdf', 'type' => 'Legal', 'size' => '3.2 MB', 'by' => 'Neha Gupta', 'date' => '11 Feb 2025'],
['property' => 'Residential Plot', 'doc' => 'Tax_Receipt_2024.pdf', 'type' => 'Tax Receipt', 'size' => '245 KB', 'by' => 'Vikram Singh', 'date' => '10 Feb 2025'],
['property' => 'Penthouse Duplex', 'doc' => 'Brochure_Penthouse_Worli.pdf', 'type' => 'Brochure', 'size' => '4.1 MB', 'by' => 'Sunita Rao', 'date' => '9 Feb 2025'],
] as $doc)
| {{ $doc['property'] }} |
{{ $doc['doc'] }} |
{{ $doc['type'] }}
|
{{ $doc['size'] }} |
{{ $doc['by'] }} |
{{ $doc['date'] }} |
|
@endforeach
@endsection