@if($notices && $notices->total > 0)
{{-- 분류/정렬/목록 수 --}}
@include('board.component.tab')
| 번호 |
제목 |
작성자 |
작성일 |
조회 |
추천 |
{{-- 공지사항 --}}
@include('board.component.notice')
@endif
{{-- 사진/동영상 게시글 --}}
@if($posts->total > 0)
@foreach($posts->list as $row)
@if($row->thumbnail)
@else
@endif
@if($boardMeta->use_category && $row->categoryName)
@endif
@if($row->is_secret)
비밀글입니다.
@elseif($row->isBlame)
{{ $row->subject }}
@else
{{ $row->subject }}
@endif
@if($row->comment_rows > 0)
[{{ $row->comment_rows }}]
@endif
@if($row->file_rows > 0)
@endif
@if($row->link_rows > 0)
@endif
@if($row->image_rows > 0)
@endif
@if($row->isNew)
New
@endif
@if($row->isHot)
Hot
@endif
{{ $row->user->name }}
- {{ $row->createdAt }}
- 조회 {{ $row->hit }}
- 좋아요 {{ $row->like }}
@endforeach
@else
게시글이 존재하지 않습니다.
@endif
@if($posts->total > 0)
{{ $posts->list->onEachSide($params->pageCount)->links('desktop.board.component.pagination') }}
@endif