@extends('admin.layouts.app') @section('title', 'Property Reviews') @section('breadcrumb')
  • Property Reviews
  • @endsection @section('heading', 'Property Reviews') @section('subheading', 'Moderate and manage property reviews from users.') @section('content')
    @foreach ([ ['name' => 'Arjun Mehta', 'property' => '3 BHK Luxury Apartment, Bandra West', 'rating' => 5, 'text' => 'Excellent property! The agent was very professional and the apartment exceeded our expectations. Great location and amenities.', 'status' => 'Published', 'date' => '14 Feb 2025'], ['name' => 'Priya Sharma', 'property' => '4 BHK Villa, Juhu', 'rating' => 4, 'text' => 'Beautiful villa with amazing views. Slightly overpriced but overall a good experience. Would recommend.', 'status' => 'Published', 'date' => '13 Feb 2025'], ['name' => 'Rahul Verma', 'property' => 'Commercial Office, BKC', 'rating' => 5, 'text' => 'Perfect office space for our startup. Quick deal closure and smooth documentation process.', 'status' => 'Pending', 'date' => '15 Feb 2025'], ['name' => 'Neha Gupta', 'property' => '2 BHK Apartment, Koramangala', 'rating' => 3, 'text' => 'Property was okay but the building maintenance could be better. Agent was helpful though.', 'status' => 'Published', 'date' => '12 Feb 2025'], ['name' => 'Vikram Singh', 'property' => 'Plot, Kharghar', 'rating' => 5, 'text' => 'Clear title, good connectivity. Exactly what we were looking for. Highly satisfied!', 'status' => 'Rejected', 'date' => '11 Feb 2025'], ['name' => 'Sunita Rao', 'property' => 'Warehouse, Peenya', 'rating' => 4, 'text' => 'Spacious warehouse with good loading facilities. Lease terms were flexible. Happy with the deal.', 'status' => 'Published', 'date' => '10 Feb 2025'], ] as $row) @endforeach
    Reviewer Property Rating Review Text Status Date Actions
    {{ collect(explode(' ', $row['name']))->map(fn($w) => $w[0])->join('') }}

    {{ $row['name'] }}

    {{ $row['property'] }}
    @for ($i = 1; $i <= 5; $i++) @if ($i <= $row['rating']) @else @endif @endfor
    {{ Str::limit($row['text'], 60) }} {{ $row['status'] }} {{ $row['date'] }}

    Showing 1 to 6 of 428 results

    @endsection