@extends('admin.layouts.app')
@section('title', 'Saved Properties')
@section('breadcrumb')
Users
Saved Properties
@endsection
@section('heading', 'Saved Properties')
@section('subheading', 'View all properties saved by users across the platform.')
@section('content')
User
Property Title
Type
Location
Price
Saved On
Property Status
@foreach ([
['name' => 'Arjun Mehta', 'property' => '3 BHK Luxury Apartment with Sea View', 'type' => 'Apartment', 'location' => 'Bandra West, Mumbai', 'price' => '₹2.5 Cr', 'saved' => '14 Feb 2025', 'status' => 'Active'],
['name' => 'Priya Sharma', 'property' => '4 BHK Villa with Private Pool', 'type' => 'Villa', 'location' => 'Juhu, Mumbai', 'price' => '₹8.2 Cr', 'saved' => '13 Feb 2025', 'status' => 'Active'],
['name' => 'Rahul Verma', 'property' => 'Premium Commercial Office Space', 'type' => 'Commercial', 'location' => 'BKC, Mumbai', 'price' => '₹85 L', 'saved' => '12 Feb 2025', 'status' => 'Sold'],
['name' => 'Neha Gupta', 'property' => '2 BHK Fully Furnished Apartment', 'type' => 'Apartment', 'location' => 'Koramangala, Bangalore', 'price' => '₹1.2 Cr', 'saved' => '11 Feb 2025', 'status' => 'Active'],
['name' => 'Vikram Singh', 'property' => 'Residential Plot Ready for Construction', 'type' => 'Plot', 'location' => 'Kharghar, Navi Mumbai', 'price' => '₹45 L', 'saved' => '10 Feb 2025', 'status' => 'Active'],
['name' => 'Sunita Rao', 'property' => 'Warehouse with Loading Dock', 'type' => 'Commercial', 'location' => 'Peenya, Bangalore', 'price' => '₹2.1 Cr', 'saved' => '9 Feb 2025', 'status' => 'Pending'],
] as $row)
{{ collect(explode(' ', $row['name']))->map(fn($w) => $w[0])->join('') }}
{{ $row['name'] }}
{{ $row['property'] }}
{{ $row['type'] }}
{{ $row['location'] }}
{{ $row['price'] }}
{{ $row['saved'] }}
{{ $row['status'] }}
@endforeach
Showing 1 to 6 of 3,421 results
Previous
1
Next
@endsection