@extends('admin.layouts.app')
@section('title', 'Floor Plans')
@section('breadcrumb')
Properties
Floor Plans
@endsection
@section('heading', 'Floor Plans')
@section('subheading', 'Manage property floor plan documents.')
@section('content')
| Property |
Plan Name |
Bedrooms |
Bathrooms |
Area |
Price Range |
Upload Date |
Actions |
@foreach ([
['property' => '3 BHK Luxury Apartment', 'plan' => 'Type A', 'beds' => 3, 'baths' => 3, 'area' => '1850 sq.ft', 'price' => '₹2.2 - 2.8 Cr', 'date' => '14 Feb 2025'],
['property' => 'Premium Villa with Pool', 'plan' => 'Main Floor', 'beds' => 4, 'baths' => 4, 'area' => '4200 sq.ft', 'price' => '₹7.5 - 9 Cr', 'date' => '13 Feb 2025'],
['property' => 'Commercial Office Space', 'plan' => 'Floor 12', 'beds' => '-', 'baths' => 2, 'area' => '3200 sq.ft', 'price' => '₹80 - 90 L', 'date' => '12 Feb 2025'],
['property' => '2 BHK Apartment', 'plan' => 'Type B', 'beds' => 2, 'baths' => 2, 'area' => '1150 sq.ft', 'price' => '₹1.1 - 1.3 Cr', 'date' => '11 Feb 2025'],
['property' => 'Penthouse Duplex', 'plan' => 'Upper Level', 'beds' => 5, 'baths' => 5, 'area' => '5800 sq.ft', 'price' => '₹12 - 15 Cr', 'date' => '10 Feb 2025'],
['property' => 'Studio Apartment', 'plan' => 'Compact', 'beds' => 1, 'baths' => 1, 'area' => '450 sq.ft', 'price' => '₹45 - 55 L', 'date' => '9 Feb 2025'],
] as $plan)
| {{ $plan['property'] }} |
{{ $plan['plan'] }} |
{{ $plan['beds'] }} |
{{ $plan['baths'] }} |
{{ $plan['area'] }} |
{{ $plan['price'] }} |
{{ $plan['date'] }} |
|
@endforeach
@endsection