@extends('backend.layouts.grid') @section('section', admin_trans('Blog')) @section('title', admin_trans('Blog Comments')) @section('content')
@foreach ($comments as $comment) @endforeach
{{ admin_trans('#') }} {{ admin_trans('Posted by') }} {{ admin_trans('Article') }} {{ admin_trans('Status') }} {{ admin_trans('Posted date') }}
{{ $comment->id }} @if ($comment->user) {{ $comment->user->name }} @else {{ admin_trans('Anonymous') }} @endif {{ shortertext($comment->blogArticle->title, 30) }} @if ($comment->status == 0) {{ admin_trans('Pending') }} @else {{ admin_trans('Published') }} @endif {{ dateFormat($comment->created_at) }}
@endsection