@extends('layouts.app') @section('title', ($board->tenant?->company_name ? $board->tenant->company_name . ' ' : '') . $board->name) @section('content')

@if($board->tenant?->company_name) {{ $board->tenant->company_name }} @endif {{ $board->name }}

@if($board->description)

{{ $board->description }}

@endif
글쓰기 게시판 목록
전체 게시글
{{ number_format($stats['total']) }}
공지사항
{{ number_format($stats['notices']) }}
오늘 작성
{{ number_format($stats['today']) }}
게시 중
{{ number_format($stats['published']) }}
@if(isset($stats['trashed']))
삭제됨
{{ number_format($stats['trashed']) }}
@endif
@if(!empty($filters['search'])) 초기화 @endif
@if($isSuperAdmin ?? false) @endif @forelse($posts as $post) @if($isSuperAdmin ?? false) @endif @empty @endforelse
번호 제목 작성자 작성일 조회관리
@if($post->trashed()) 삭제 @elseif($post->is_notice) 공지 @else {{ $post->id }} @endif @if($post->trashed()) {{ $post->title }} ({{ $post->deleted_at->format('Y-m-d') }} 삭제) @else @if($post->is_secret) @endif {{ $post->title }} @if($post->files_count > 0) {{ $post->files_count }} @endif @if($post->comments_count > 0) {{ $post->comments_count }} @endif @endif {{ $post->author?->name ?? '알 수 없음' }} {{ $post->created_at->format('Y-m-d') }} {{ number_format($post->views) }} @if($post->trashed())
@csrf
@csrf @method('DELETE')
@else - @endif

게시글이 없습니다.

첫 게시글 작성하기
@if($posts->hasPages())
{{ $posts->withQueryString()->links() }}
@endif
@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif @endsection