notice.blade.php 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. @if($notices)
  2. @foreach($notices->list as $row)
  3. <tr>
  4. <td>
  5. <img src="/images/icon/notice.gif" alt="공지사항"/>
  6. </td>
  7. <td class="text-start" @if($boardMeta->use_personal) colspan="2" @endif>
  8. @if($boardMeta->use_category && $row->categoryName)
  9. <label>
  10. <a href="{{ $listURL }}?category={{ $row->board_category_id }}" rel="search">
  11. [{{ $row->categoryName }}]
  12. </a>
  13. </label>
  14. @endif
  15. @if($row->is_secret)
  16. <i class="fas fa-lock"></i>
  17. @endif
  18. <a href="{{ $row->viewURL }}" hreflang="ko" referrerpolicy="origin" type="text/html" target="_self">{{ $row->subject }}</a>
  19. @if($row->comment_rows > 0)
  20. <var>[{{ $row->comment_rows }}]</var>
  21. @endif
  22. @if($row->file_rows > 0)
  23. <i class="fas fa-save"></i>
  24. @endif
  25. @if($row->link_rows > 0)
  26. <i class="fas fa-external-link-alt"></i>
  27. @endif
  28. @if($row->image_rows > 0)
  29. <i class="fas fa-image"></i>
  30. @endif
  31. @if($row->isNew)
  32. <span class="badge bg-warning text-dark">New</span>
  33. @endif
  34. @if($row->isHot)
  35. <span class="badge bg-danger">Hot</span>
  36. @endif
  37. </td>
  38. <td>{{ $row->user->name }}</td>
  39. <td>{{ $row->createdAt }}</td>
  40. <td>{{ $row->hit }}</td>
  41. <td>{{ $row->like }}</td>
  42. </tr>
  43. @endforeach
  44. @endif