hot.blade.php 749 B

123456789101112131415161718192021
  1. <div class="panel panel-default">
  2. <!-- Default panel contents -->
  3. <div class="panel-heading">热门文章</div>
  4. @inject('hotArticle', 'App\Presenters\ArticlePresenter')
  5. <?php $hotArticleList = $hotArticle->hotArticleList(); ?>
  6. <!-- List group -->
  7. <ul class="list-group">
  8. @if ($hotArticleList)
  9. @foreach ($hotArticleList as $hal)
  10. <li class="list-group-item">
  11. <span class="badge">{{ $hal->read_count }}</span>
  12. <a href="{{ route('article', ['id' => $hal->id]) }}" target="_blank">
  13. {{ $hotArticle->formatTitle($hal->title) }}
  14. </a>
  15. </li>
  16. @endforeach
  17. @endif
  18. </ul>
  19. </div>