popular.blade.php 610 B

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