@extends('layouts.admin') @section('content')

Post Comments

@foreach($comments as $index => $comment) @endforeach
Sl No Full Name Username Email Comment Comment On
{{ $index + 1 }} {{ $comment->user->first_name ?? '' }} {{ $comment->user->last_name ?? '' }} {{ $comment->user->username ?? 'NA' }} {{ $comment->user->email ?? 'NA' }} {{ $comment->comment ?? 'NA' }} {{ dateInCustomTimezone($comment->created_at) }}
Back
@endsection @section('script') @endsection