@extends('admin.layouts.app') @section('title', 'Agent Reviews') @section('breadcrumb')
  • Reviews & Ratings
  • Agent Reviews
  • @endsection @section('heading', 'Agent Reviews') @section('subheading', 'Moderate and manage reviews submitted for agents.') @section('content') {{-- Stats --}}
    Total Reviews

    842

    +14% from last month

    Avg Rating

    4.6

    +0.1 from last month

    Pending

    47

    +8 new today

    Rejected

    23

    This month

    {{-- Table --}}
    @php $reviews = [ ['reviewer' => 'Rahul Sharma', 'email' => 'rahul@gmail.com', 'agent' => 'Priya Mehta', 'rating' => 5, 'text' => 'Exceptional service! Helped us find our dream home in Bandra within budget.', 'status' => 'Published', 'date' => '12 Feb 2026'], ['reviewer' => 'Sneha Patel', 'email' => 'sneha@gmail.com', 'agent' => 'Amit Desai', 'rating' => 4, 'text' => 'Very professional and knowledgeable about the Pune market. Good follow-up.', 'status' => 'Published', 'date' => '11 Feb 2026'], ['reviewer' => 'Vikram Singh', 'email' => 'vikram@gmail.com', 'agent' => 'Rohit Kapoor', 'rating' => 3, 'text' => 'Average experience. Communication could be better but deal was smooth.', 'status' => 'Pending', 'date' => '10 Feb 2026'], ['reviewer' => 'Ananya Reddy', 'email' => 'ananya@gmail.com', 'agent' => 'Sunita Rao', 'rating' => 5, 'text' => 'Outstanding! Best agent in Hyderabad. Made the buying process seamless.', 'status' => 'Published', 'date' => '09 Feb 2026'], ['reviewer' => 'Karan Malhotra', 'email' => 'karan@gmail.com', 'agent' => 'Deepak Joshi', 'rating' => 2, 'text' => 'Not satisfied with the property options shown. Felt rushed into decision.', 'status' => 'Pending', 'date' => '08 Feb 2026'], ['reviewer' => 'Meera Iyer', 'email' => 'meera@gmail.com', 'agent' => 'Arun Nair', 'rating' => 4, 'text' => 'Great knowledge of Bangalore south market. Responsive and helpful.', 'status' => 'Rejected', 'date' => '07 Feb 2026'], ]; @endphp @foreach($reviews as $review) @endforeach
    Reviewer Agent Rating Review Status Date Actions
    {{ strtoupper(substr($review['reviewer'], 0, 1)) }}

    {{ $review['reviewer'] }}

    {{ $review['email'] }}

    {{ $review['agent'] }}
    @for($i = 1; $i <= 5; $i++) @if($i <= $review['rating']) @else @endif @endfor
    {{ $review['text'] }} @if($review['status'] === 'Published') Published @elseif($review['status'] === 'Pending') Pending @else Rejected @endif {{ $review['date'] }}
    @if($review['status'] === 'Pending') @endif
    {{-- Pagination --}}

    Showing 1-6 of 842

    @endsection