@extends('backend.layouts.master') @section('title') {{ __('sidebar.all_post_comment') }} @endsection @section('main-content') @include('backend.layouts.notification')
Comments
@if(count($comments)>0) @foreach($comments as $comment) @endforeach
{{ __('sidebar.post_snumber') }} {{ __('sidebar.post_author') }} {{ __('sidebar.post_title') }} Message Date {{ __('sidebar.post_status') }} {{ __('sidebar.post_action') }}
{{$comment->id}} {{$comment->user_info['name']}} {{$comment->post->title}} {{$comment->comment}} {{$comment->created_at->format('M d D, Y g: i a')}} @if($comment->status=='active') {{$comment->status}} @else {{$comment->status}} @endif
@else
No comments found!!! Please add comment
@endif
@endsection