@extends('admin.layouts.app')
@section('title', 'Saved Searches')
@section('breadcrumb')
Users
Saved Searches
@endsection
@section('heading', 'Saved Searches')
@section('subheading', 'Manage user saved search alerts and criteria.')
@section('content')
| User |
Search Query |
Location |
Budget Range |
Property Type |
Alert Frequency |
Created |
Status |
@foreach ([
['name' => 'Arjun Mehta', 'query' => '3 BHK, 2+ bathrooms, furnished', 'location' => 'Bandra, Mumbai', 'budget' => '₹1.5 Cr - ₹3 Cr', 'type' => 'Apartment', 'freq' => 'Daily', 'created' => '10 Feb 2025', 'status' => 'Active'],
['name' => 'Priya Sharma', 'query' => 'Villa, pool, gated community', 'location' => 'Juhu, Mumbai', 'budget' => '₹5 Cr - ₹10 Cr', 'type' => 'Villa', 'freq' => 'Weekly', 'created' => '8 Feb 2025', 'status' => 'Active'],
['name' => 'Rahul Verma', 'query' => 'Commercial office, 2000+ sqft', 'location' => 'BKC, Mumbai', 'budget' => '₹50 L - ₹1 Cr', 'type' => 'Commercial', 'freq' => 'Monthly', 'created' => '5 Feb 2025', 'status' => 'Active'],
['name' => 'Neha Gupta', 'query' => '2 BHK, ready to move', 'location' => 'Koramangala, Bangalore', 'budget' => '₹80 L - ₹1.5 Cr', 'type' => 'Apartment', 'freq' => 'Daily', 'created' => '3 Feb 2025', 'status' => 'Paused'],
['name' => 'Vikram Singh', 'query' => 'Plot, residential, clear title', 'location' => 'Kharghar, Navi Mumbai', 'budget' => '₹30 L - ₹60 L', 'type' => 'Plot', 'freq' => 'Weekly', 'created' => '1 Feb 2025', 'status' => 'Active'],
['name' => 'Sunita Rao', 'query' => 'Warehouse, industrial area', 'location' => 'Peenya, Bangalore', 'budget' => '₹1.5 Cr - ₹3 Cr', 'type' => 'Commercial', 'freq' => 'Monthly', 'created' => '28 Jan 2025', 'status' => 'Active'],
] as $row)
{{ collect(explode(' ', $row['name']))->map(fn($w) => $w[0])->join('') }}
{{ $row['name'] }}
|
{{ $row['query'] }} |
{{ $row['location'] }} |
{{ $row['budget'] }} |
{{ $row['type'] }} |
{{ $row['freq'] }}
|
{{ $row['created'] }} |
{{ $row['status'] }}
|
@endforeach
Showing 1 to 6 of 892 results
@endsection