@extends('admin.layouts.app')
@section('title', 'Approval Queue')
@section('breadcrumb')
Properties
Approval Queue
@endsection
@section('heading', 'Approval Queue')
@section('subheading', 'Review and approve pending property submissions.')
@section('content')
{{-- Stats --}}
{{-- Table --}}
| Property |
Submitted By |
Type |
Price |
Submitted Date |
Status |
Actions |
@foreach ([
['title' => '3 BHK Apartment with Balcony', 'location' => 'Andheri West, Mumbai', 'by' => 'Raj Mehta', 'type' => 'Apartment', 'price' => '₹1.8 Cr', 'date' => '15 Feb 2025', 'status' => 'Pending'],
['title' => 'Commercial Retail Space', 'location' => 'Connaught Place, Delhi', 'by' => 'Priya Sharma', 'type' => 'Commercial', 'price' => '₹2.5 Cr', 'date' => '14 Feb 2025', 'status' => 'Pending'],
['title' => '2 BHK Ready to Move', 'location' => 'Whitefield, Bangalore', 'by' => 'Arjun Verma', 'type' => 'Apartment', 'price' => '₹95 L', 'date' => '14 Feb 2025', 'status' => 'Pending'],
['title' => 'Villa with Garden', 'location' => 'Koregaon Park, Pune', 'by' => 'Neha Gupta', 'type' => 'Villa', 'price' => '₹4.2 Cr', 'date' => '13 Feb 2025', 'status' => 'Pending'],
['title' => 'Residential Plot', 'location' => 'Noida Sector 62', 'by' => 'Vikram Singh', 'type' => 'Plot', 'price' => '₹62 L', 'date' => '13 Feb 2025', 'status' => 'Pending'],
['title' => 'Studio Apartment', 'location' => 'Powai, Mumbai', 'by' => 'Sunita Rao', 'type' => 'Studio', 'price' => '₹48 L', 'date' => '12 Feb 2025', 'status' => 'Pending'],
] as $property)
|
{{ $property['title'] }}
{{ $property['location'] }}
|
{{ $property['by'] }} |
{{ $property['type'] }} |
{{ $property['price'] }} |
{{ $property['date'] }} |
{{ $property['status'] }}
|
|
@endforeach
@endsection