@extends('admin.layouts.app') @section('title', 'Blog Comments') @section('breadcrumb')
  • Blog
  • Comments
  • @endsection @section('heading', 'Blog Comments') @section('subheading', 'Moderate and manage blog post comments.') @section('content')
    @foreach ([ ['author' => 'Rajesh Kumar', 'email' => 'rajesh@email.com', 'post' => '10 Tips for First-Time Home Buyers in India', 'comment' => 'Great article! Very helpful for someone like me who is planning to buy their first home. The RERA section was particularly insightful.', 'status' => 'Approved', 'date' => '15 Feb 2025'], ['author' => 'Priya Sharma', 'email' => 'priya.s@email.com', 'post' => 'Mumbai Property Market Outlook 2025', 'comment' => 'Do you have any data on Andheri West specifically? I am looking to invest there.', 'status' => 'Pending', 'date' => '14 Feb 2025'], ['author' => 'Amit Patel', 'email' => 'amit.p@email.com', 'post' => 'Understanding Stamp Duty in Maharashtra', 'comment' => 'Thanks for breaking this down. The calculator link would be useful - is it available?', 'status' => 'Approved', 'date' => '14 Feb 2025'], ['author' => 'Spam Bot', 'email' => 'spam@fake.com', 'post' => 'Home Loan EMI Calculator Guide', 'comment' => 'Buy cheap properties!!! Click here for amazing deals!!!', 'status' => 'Spam', 'date' => '13 Feb 2025'], ['author' => 'Neha Gupta', 'email' => 'neha.g@email.com', 'post' => 'NRI Property Investment Guide', 'comment' => 'As an NRI, I found the repatriation section very clear. One question: what about capital gains tax?', 'status' => 'Approved', 'date' => '12 Feb 2025'], ['author' => 'Vikram Singh', 'email' => 'vikram@email.com', 'post' => 'Best Areas to Invest in Bangalore', 'comment' => 'Whitefield and Electronic City both seem promising. Which has better rental yields?', 'status' => 'Pending', 'date' => '11 Feb 2025'], ] as $c) @endforeach
    Author Post Title Comment Status Date Actions
    {{ $c['author'] }}

    {{ $c['email'] }}

    {{ Str::limit($c['post'], 35) }} {{ Str::limit($c['comment'], 50) }} @php $statusClass = match($c['status']) { 'Approved' => 'bg-emerald-50 text-emerald-700', 'Pending' => 'bg-amber-50 text-amber-700', 'Spam' => 'bg-red-50 text-red-700', default => 'bg-gray-100 text-gray-600' }; @endphp {{ $c['status'] }} {{ $c['date'] }}
    @endsection