@extends('admin.layout.app') @section('heading', 'Pending Comments') @section('rightside_button') {{-- Optional: Add button here if needed --}} @endsection @section('main_content')
@foreach ($pending_comments as $item) @endforeach
Blog Title Name Email Comment Submitted At Actions
{{ $item->blog->card_title ?? 'N/A' }} {{ $item->person_name }} {{ $item->person_email }} {{ $item->person_comment }} {{ $item->created_at->format('Y-m-d H:i') }} {{--
@csrf
--}} Approve Delete
@endsection