@extends('backend.layouts.grid') @section('title', __('Blog Comments')) @section('content')
| {{ __('#') }} | {{ __('Posted by') }} | {{ __('Article') }} | {{ __('Status') }} | {{ __('Posted date') }} | |
|---|---|---|---|---|---|
| {{ $comment->id }} | @if ($comment->user) {{ $comment->user->firstname . ' ' . $comment->user->lastname }} @else {{ __('Anonymous') }} @endif | {{ shortertext($comment->blogArticle->title, 30) }} | @if ($comment->status == 0) {{ __('Pending') }} @else {{ __('Published') }} @endif | {{ vDate($comment->created_at) }} |
|