12345678910111213141516171819202122 |
- @if($comments)
- @foreach($comments as $comment)
- <div class="col-md-12 comment-item">
- <div class='col-md-12 comment-head'>
- <div class="col-xs-4 col-sm-4 col-md-4 col-lg-4">
- Replied by {{ $comment->user?$comment->user->name:'' }}
- </div>
- <div class="col-xs-8 col-sm-8 col-md-8 col-lg-8">
- on <strong>{{ date('m d, Y',strtotime($comment->created_at)) }} </strong> at <strong>{{ date('h:m A',strtotime($comment->created_at)) }}</strong>
- </div>
- </div>
-
- <div class=' col-md-9 comment-body'>
-
- {{ $comment->comment }}
- </div>
- <div class="clearfix"></div>
- </div>
- @endforeach
- @endif
|