show.blade.php 782 B

123456789101112131415161718192021222324252627
  1. @extends('layouts.master')
  2. @section('content')
  3. <div class="col-sm-8 blog-main">
  4. <h1>{{ $post->title }}</h1>
  5. <p class="blog-post-meta">
  6. {{ $post->created_at->toFormattedDateString() }}
  7. by <a href="#">Mark</a>
  8. </p>
  9. {{ $post->body }}
  10. @if (count($post->comments))
  11. <hr />
  12. <div class="comments">
  13. <ul class="list-group">
  14. @foreach($post->comments as $comment)
  15. <li class="list-group-item">
  16. <strong>{{ $comment->created_at->diffForHumans() }}</strong>
  17. :&nbsp;
  18. {{ $comment->body }}
  19. </li>
  20. @endforeach
  21. </ul>
  22. </div>
  23. @endif
  24. </div>
  25. @endsection