Advertisement
last63

sideNews - Detail

Mar 19th, 2024
32
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.68 KB | None | 0 0
  1. <div class="col-md-3">
  2. <!-- ======= Sidebar ======= -->
  3. <div class="aside-block">
  4.  
  5. <ul class="nav nav-pills custom-tab-nav mb-4" id="pills-tab" role="tablist">
  6. @foreach ($category as $row => $index)
  7. <li class="nav-item" role="presentation">
  8. <button class="nav-link {{ $row == 0 ? 'active' : '' }}" id="pills-popular-tab"
  9. data-bs-toggle="pill" data-bs-target="#pills-popular{{ $index->id }}" type="button" role="tab"
  10. aria-controls="pills-popular{{ $index->id }}" aria-selected="true">{{ $index->name }}</button>
  11. </li>
  12. @endforeach
  13. </ul>
  14.  
  15. <div class="tab-content" id="pills-tabContent">
  16.  
  17. @foreach ($category as $row => $index)
  18. <div class="tab-pane fade show {{ $row == 0 ? 'active' : '' }}" id="pills-popular{{ $index->id }}"
  19. role="tabpanel" aria-labelledby="pills-popular-tab">
  20. @foreach ($index->news->sortByDesc('created_at')->take(3) as $news)
  21. <div class="post-entry-1 border-bottom">
  22. <div class="post-meta"><span class="date">{{ $index->name }}</span> <span
  23. class="mx-1">&bullet;</span> <span>{{ $news->created_at->diffForHumans() }}</span></div>
  24. <h2 class="mb-2"><a href="{{ route('detailNews', $news->slug) }}">{{ $news->title }}</a></h2>
  25. <span class="author mb-3 d-block">Admin</span>
  26. </div>
  27. @endforeach
  28. </div>
  29. @endforeach
  30.  
  31. </div>
  32. </div>
  33.  
  34. <div class="aside-block">
  35. <h3 class="aside-title">Video</h3>
  36. <div class="video-post">
  37. <a href="https://www.youtube.com/watch?v=AiFfDjmd0jU" class="glightbox link-video">
  38. <span class="bi-play-fill"></span>
  39. <img src="assets/img/post-landscape-5.jpg" alt="" class="img-fluid">
  40. </a>
  41. </div>
  42. </div>
  43. <!-- End Video -->
  44.  
  45. <div class="aside-block">
  46. <h3 class="aside-title">Categories</h3>
  47. <ul class="aside-links list-unstyled">
  48. @foreach ($category as $row)
  49. <li><a href="{{ route('detailCategory', $row->slug) }}"><i class="bi bi-chevron-right"></i>
  50. {{ $row->name }}</a></li>
  51. @endforeach
  52. </ul>
  53. </div><!-- End Categories -->
  54.  
  55. <div class="aside-block">
  56. <h3 class="aside-title">Tags</h3>
  57. <ul class="aside-tags list-unstyled">
  58. @foreach ($category as $row)
  59. <li><a href="{{ route('detailCategory', $row->slug) }}">{{ $row->name }}</a></li>
  60. @endforeach
  61. </ul>
  62. </div><!-- End Tags -->
  63.  
  64. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement