@extends('admin.layouts.app') @section('title', 'Blog Comments') @section('breadcrumb')
| 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'] }} |