notice.blade.php 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. @if($notices)
  2. @foreach($notices->list as $row)
  3. <tr>
  4. <td>
  5. <div class="row">
  6. <div class="col col-md-10">
  7. <p>
  8. <img src="/images/icon/notice.gif" class="img-fluid me-2" alt="공지사항"/>
  9. @if($boardMeta->use_category && $row->categoryName)
  10. <label>
  11. <a href="{{ $listURL }}?category={{ $row->board_category_id }}" class="me-0" rel="search">
  12. [{{ $row->categoryName }}]
  13. </a>
  14. </label>
  15. @endif
  16. @if($row->is_secret)
  17. <i class="fas fa-lock"></i>
  18. @endif
  19. <a href="{{ $row->viewURL }}" hreflang="ko" referrerpolicy="origin" type="text/html">{{ $row->subject }}</a>
  20. @if($row->comment_rows > 0)
  21. <var>[{{ $row->comment_rows }}]</var>
  22. @endif
  23. @if($row->file_rows > 0)
  24. <i class="fas fa-save"></i>
  25. @endif
  26. @if($row->link_rows > 0)
  27. <i class="fas fa-external-link-alt"></i>
  28. @endif
  29. @if($row->image_rows > 0)
  30. <i class="fas fa-image"></i>
  31. @endif
  32. @if($row->isNew)
  33. <span class="badge bg-warning text-dark">New</span>
  34. @endif
  35. @if($row->isHot)
  36. <span class="badge bg-danger">Hot</span>
  37. @endif
  38. </p>
  39. <ul>
  40. <li>{{ $row->user->name }}</li>
  41. <li>{{ $row->createdAt }}</li>
  42. <li>조회 {{ $row->hit }}</li>
  43. </ul>
  44. </div>
  45. @if($row->thumbnail)
  46. <div class="col-3 col-md-2 align-self-center">
  47. <img src="{{ $row->thumbnail }}" class="img-fluid rounded w-100" alt="{{ $row->subject }}"/>
  48. </div>
  49. @endif
  50. </div>
  51. </td>
  52. </tr>
  53. @endforeach
  54. @endif