@extends('layout.master') @section('title') @if (isset($pageTitle)) {{ $pageTitle }} @endif @endsection @section('main-body')

{{ isset($pageTitle) ? $pageTitle : '' }}

@include('layout.message')
@if(isset($item))
{{__("Post Title")}}
:
{!! clean($item->blog->title) !!}
{{__("Comments")}}
:
{!! clean($item->comment) !!}
{{__("Author Name")}}
:
{!! clean($item->name) !!}
{{__("Author Email")}}
:
{!! clean($item->email) !!}
{{__("Status")}}
:
{!! clean(comment_status($item->status)) !!}
{{__("Date")}}
:
{!! clean(date('d M y', strtotime($item->created_at))) !!}
@if($item->status == COMMENT_PENDING) @else @endif @else

{{__('No data found')}}

@endif
@endsection @section('script') @endsection