@extends('desktop.layouts.app') @section('content')

{{ $board->name }}

@if($boardMeta->show_user_thumb_in_post) @endif @if($post->files->count() > 0 || $post->links->count() > 0) @endif

@if($post->is_notice || $post->is_speaker) [공지] @endif @if($post->is_secret) @endif {{ $post->subject }}

show_user_thumb_in_post) class="w-0 p-0" @endif> @if($boardMeta->show_user_thumb_in_post) {{ $post->username }} @endif {{ $post->username }} @if($boardMeta->use_post_user_regdate && $post->user->createdAt){{ $post->user->createdAt }}@endif {{ $post->createdAt }}
  • 조회 {{ $post->hit }}
  • @if(($boardMeta->use_comment) && $post->use_comment)
  • 댓글 {{ $post->comment_rows }}
  • @endif @if($boardMeta->use_post_like)
  • 좋아요 {{ $post->like }}
  • @endif @if($boardMeta->use_post_dislike)
  • 싫어요 {{ $post->dislike }}
  • @endif @if($boardMeta->show_post_ip || IS_ADMIN)
  • {!! $post->ipAddress !!}
  • @endif
    @if($boardMeta->use_url_qrcode)
  • QR
  • @endif @if($boardMeta->use_print)
  • 인쇄
  • @endif @if($boardMeta->use_copy_post_url)
  • 주소
  • @endif @if($boardMeta->use_sns)
  • @endif
    {{-- Links --}} @if($post->links->count() > 0) @foreach($post->links as $link)
  1. {{ $link->url }} @if($boardMeta->use_attached_url_qrcode) @endif
  2. @endforeach @endif {{-- Files --}} @if($post->files->count() > 0) @foreach($post->files as $file)
  3. @endforeach @endif
{!! $post->content !!}
@if($boardMeta->use_post_like) @endif @if($boardMeta->use_post_dislike) @endif
@if($post->tags->count() > 0) {{ join(', ', array_column($post->tags->toArray() ?? [], 'tag')) }} @endif
@if($boardMeta->use_comment && $post->use_comment)
댓글 {{ $post->comment_rows }}
@if($post->comment_rows > 0) @endif
@include('desktop.board.comment.write')
@endif @if($boardMeta->use_url_qrcode || $boardMeta->use_attached_url_qrcode) {{-- QR 코드 --}} @endif @if($boardMeta->use_blame) {{-- 신고하기 --}} @endif
@csrf
{{-- 최근 읽기 목록 --}} @include('desktop.board.component.latest')
@endsection @push('styles') @endpush @push('scripts') @endpush