@extends('layouts.app') @section('title', ($board->tenant?->company_name ? $board->tenant->company_name . ' ' : '') . $board->name) @section('content')
{{ $board->description }}
@endif| 번호 | 제목 | 작성자 | 작성일 | 조회 | @if($isSuperAdmin ?? false)관리 | @endif
|---|---|---|---|---|---|
| @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($isSuperAdmin ?? false)
@if($post->trashed())
|
@endif
|
게시글이 없습니다. 첫 게시글 작성하기 |
|||||