@php($comments = \App\Comment::approved(false)->take(5)->latest()->get())

{{ trans('admin.Unapproved', ['type' => __('Comments') ]) }}

@if($comments)
@foreach($comments as $item) @endforeach
{{ __('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
@else {{ trans('admin.nothingtoseehere') }} @endif