@if($boardMeta->use_personal)
{{-- 1:1문의 시작 --}}
@if($boardMeta->use_category)
@endif
| 번호 |
@if($boardMeta->use_category)
분류 |
@endif
제목 |
작성자 |
작성일 |
조회 |
답변 여부 |
@foreach($latest->list as $row)
| {{ $row->num }} |
@if($boardMeta->use_category)
@if($row->categoryName)
@else
-
@endif
|
@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 }} |
@if($row->is_reply)
답변완료
@else
접수완료
@endif
|
@endforeach
@if($latest->total > 0)
|
{{ $latest->list->onEachSide($pageCount)->links('desktop.board.component.pagination') }}
|
@endif
{{-- 1:1문의 종료 --}}
@elseif($boardMeta->board_layout_type == BOARD_LAYOUT_NORMAL)
{{-- 일반 게시글 시작 --}}
| 번호 |
제목 |
작성자 |
작성일 |
조회 |
추천 |
@foreach($latest->list as $row)
| {{ $row->num }} |
@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
@if($latest->total > 0)
|
{{ $latest->list->onEachSide($pageCount)->links('desktop.board.component.pagination') }}
|
@endif
{{-- 일반 게시글 종료 --}}
@elseif($boardMeta->board_layout_type == BOARD_LAYOUT_MEDIA)
{{-- 사진/동영상 게시글 시작 --}}
@if($latest->total > 0)
@foreach($latest->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($latest->total > 0)
{{ $latest->list->onEachSide($pageCount)->links('desktop.board.component.pagination') }}
@endif
{{-- 사진/동영상 게시글 종료 --}}
@endif
@endif
@endif
@push('styles')