{{$subject->title}}
{{$subject->description }}
{{ __('Created at') }}:
{{ date('d F, Y, H:i:s', strtotime($subject->created_at))}}
@if($subject->updated_at != $subject->created_at)
{{ __('Modified') }}: {{date('d F, Y, H:i:s', strtotime($subject->updated_at))}}
@endif
#{{$i++}}
{{ $comment->description }}
{{ __('Comment by') }}: {{$comment->user->name}}
{{ __('Created at') }}:
{{ date('d F, Y, H:i:s', strtotime($comment->created_at))}}
@if($comment->updated_at != $comment->created_at)
{{ __('Modified') }} : {{date('d F, Y, H:i:s', strtotime($comment->updated_at))}}
@endif