comment.blade.php 595 B

12345678910111213141516171819202122
  1. @if($comments)
  2. @foreach($comments as $comment)
  3. <div class="col-md-12 comment-item">
  4. <div class='col-md-12 comment-head'>
  5. <div class="col-xs-4 col-sm-4 col-md-4 col-lg-4">
  6. Replied by {{ $comment->user?$comment->user->name:'' }}
  7. </div>
  8. <div class="col-xs-8 col-sm-8 col-md-8 col-lg-8">
  9. on <strong>{{ date('m d, Y',strtotime($comment->created_at)) }} </strong> at <strong>{{ date('h:m A',strtotime($comment->created_at)) }}</strong>
  10. </div>
  11. </div>
  12. <div class=' col-md-9 comment-body'>
  13. {{ $comment->comment }}
  14. </div>
  15. <div class="clearfix"></div>
  16. </div>
  17. @endforeach
  18. @endif