media.blade.php 4.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <table class="table">
  2. <caption>
  3. {{-- 분류/정렬/목록 수 --}}
  4. @include('mobile.board.component.tab')
  5. </caption>
  6. <tbody>
  7. {{-- 공지사항 --}}
  8. @include('mobile.board.component.notice')
  9. {{-- 사진/동영상 게시글 --}}
  10. @if($posts->total > 0)
  11. <tr>
  12. <td>
  13. <section>
  14. @foreach($posts->list as $row)
  15. <figure id="figure_{{ $row->num }}" class="figure">
  16. @if($row->thumbnail)
  17. <a href="{{ $row->viewURL }}" hreflang="ko" referrerpolicy="origin" type="text/html" target="_self">
  18. <img src="{{ $row->thumbnail }}" class="figure-img img-fluid rounded" alt="{{ $row->subject }}" onerror="this.src='{{ NO_IMAGE_NORMAL_SRC }}'"/>
  19. </a>
  20. @endif
  21. <figcaption class="figure-caption">
  22. <p>
  23. @if($boardMeta->use_category && $row->categoryName)
  24. <label>
  25. <a href="{{ $listURL }}?category={{ $row->board_category_id }}" class="me-0" rel="search">
  26. [{{ $row->categoryName }}]
  27. </a>
  28. </label>
  29. @endif
  30. @if($row->is_secret)
  31. <a href="{{ $row->viewURL }}" hreflang="ko" referrerpolicy="origin" type="text/html" target="_self">
  32. <i class="fas fa-lock"></i> 비밀글입니다.
  33. </a>
  34. @elseif($row->isBlame)
  35. <i class="fas fa-ban"></i> <del>{{ $row->subject }}</del>
  36. @else
  37. <a href="{{ $row->viewURL }}" hreflang="ko" referrerpolicy="origin" type="text/html" target="_self">{{ $row->subject }}</a>
  38. @endif
  39. @if($row->comment_rows > 0)
  40. <var>[{{ $row->comment_rows }}]</var>
  41. @endif
  42. @if($row->file_rows > 0)
  43. <i class="fas fa-save"></i>
  44. @endif
  45. @if($row->link_rows > 0)
  46. <i class="fas fa-external-link-alt"></i>
  47. @endif
  48. @if($row->image_rows > 0)
  49. <i class="fas fa-image"></i>
  50. @endif
  51. @if($row->isNew)
  52. <span class="badge bg-warning text-dark">New</span>
  53. @endif
  54. @if($row->isHot)
  55. <span class="badge bg-danger">Hot</span>
  56. @endif
  57. </p>
  58. </figcaption>
  59. <strong>{{ $row->user->name }}</strong>
  60. <small>{{ $row->createdAt }}</small>
  61. <ul>
  62. <li>조회 <small>{{ $row->hit }}</small></li>
  63. <li>좋아요 <small>{{ $row->like }}</small></li>
  64. </ul>
  65. </figure>
  66. @endforeach
  67. </section>
  68. </td>
  69. </tr>
  70. @else
  71. <tr>
  72. <td class="p-5 text-center">
  73. 게시글이 존재하지 않습니다.
  74. </td>
  75. </tr>
  76. @endif
  77. </tbody>
  78. </table>
  79. @if($posts->total > 0)
  80. <div class="pagination">
  81. {{ $posts->list->onEachSide($params->pageCount)->links('mobile.board.component.pagination') }}
  82. </div>
  83. @endif