recommend.blade.php 806 B

123456789101112131415
  1. @if($guess_you_like_articles)
  2. <h5 class="font-weight-bold pb-2 theme-first-text">猜你喜欢</h5>
  3. <div class="list-group mb-5">
  4. @foreach($guess_you_like_articles as $article)
  5. <a href="{{ route('home.blog.article', $article['slug']) }}"
  6. class="p-2 border-top list-group-item-action flex-column align-items-start active">
  7. <div class="d-flex w-100 justify-content-between">
  8. <h6 class="mb-1 overflow-slh theme-first-text">{!! $article['title'] !!}</h6>
  9. <small class="min-width-max-content">阅读 {{ $article['read_count'] }}</small>
  10. </div>
  11. <p class="mb-1 theme-second-text overflow-slh">{!! $article['description'] !!}</p>
  12. </a>
  13. @endforeach
  14. </div>
  15. @endif