hot.blade.php 666 B

123456789101112131415
  1. @if(config('vienblog.sidebar.hot.open'))
  2. <div class="p-3">
  3. <h5 class="font-weight-bold">{{ config('vienblog.sidebar.hot.title') }}</h5>
  4. <ol class="list-unstyled mb-0">
  5. @foreach($sidebar_hots as $hot)
  6. <li class="d-flex justify-content-between align-items-center mb-1">
  7. <a class="text-secondary overflow-slh" href="{{ route('home.blog.article', $hot['slug']) }}">
  8. {!! $hot['title'] !!}
  9. </a>
  10. <span class="badge badge-secondary">{{ $hot['read_count'] }}</span>
  11. </li>
  12. @endforeach
  13. </ol>
  14. </div>
  15. @endif