@php($comments = \App\Comment::approved(false)->take(5)->latest()->get())
| {{ __('Comment') }} | {{ trans('admin.actions') }} |
|---|---|
|
{{ strip_tags(\Str::limit($item->comment, 150)) }} @if($item->userdata->type =='guest') {{ $item->userdata->username }} ({{ __('Guest') }}) @else {{ $item->userdata->username }} @endif {{ $item->created_at->diffForHumans() }} @if($item->post) {{ Str::limit($item->post->title, 25) }} @endif |
|