@extends('admin.layouts.grid') @section('section', translate('Blog')) @section('title', translate('Blog Comments')) @section('content')
@foreach ($comments as $comment) @endforeach
# {{ translate('Posted by') }} {{ translate('Article') }} {{ translate('Status') }} {{ translate('Posted date') }}
{{ $comment->id }} {{ $comment->user->getName() }} {{ shorterText($comment->article->title, 30) }} @if ($comment->status) {{ translate('Published') }} @else {{ translate('Pending') }} @endif {{ dateFormat($comment->created_at) }}
@endsection