@php $tenantKeyLabel = $tenantKey !== '' ? $tenantKey : '전체'; @endphp
@if (session('status')) {{ session('status') }} @endif 테넌트 {{ $tenantKeyLabel }} 전체 {{ $posts->total() }}
게시글 노출 상태 안내

플랫폼에 수집된 게시글은 정상 / 숨김 / 차단 상태로 관리할 수 있습니다.

정상: 플랫폼 메인, 검색, 태그 및 게시글 목록 등에 정상적으로 노출됩니다.

숨김: 게시글에는 문제가 없지만 플랫폼 메인 노출에서만 제외합니다. 검색, 태그 및 게시글 목록에서는 계속 확인할 수 있습니다.

차단: 문제가 있는 게시글을 플랫폼 전체에서 제재합니다. 메인, 검색, 태그 및 게시글 목록 등에서 모두 노출되지 않습니다.

숨김과 차단은 플랫폼의 수집 게시글에만 적용되며, 테넌트 사이트의 원본 게시글에는 영향을 주지 않습니다.

검색 @if ($posts->isEmpty()) @else
@foreach ($posts as $post) @php $tenantName = $post->tenant?->name ?: $post->tenant_key; $tags = collect($post->tags ?? []); @endphp
@if ($post->thumbnail_url) @endif
{{ $tenantName }}

{{ $post->title }}

@if ($post->meta_description)

{{ $post->meta_description }}

@endif
{{ $post->source_board_title }} @foreach ($tags as $tag) {{ $tag }} @endforeach
작성자 {{ $post->authorLabel() }}
발행일 {{ $post->publishedAtLabel() }}
수정일 {{ $post->updatedAtLabel() }}
수집 여부 {{ $post->collectionLabel() }}
게시판 {{ $post->source_board_title }}
상태 @php $statusVariant = match ($post->moderation_status) { $post::MODERATION_HIDDEN => 'warning', $post::MODERATION_BLOCKED => 'danger', default => 'success', }; @endphp {{ $post->moderationLabel() }}
@if ($post->isModerationNormal())
@csrf 숨김
@csrf 차단
@elseif ($post->isModerationHidden())
@csrf 복구
@csrf 차단
@else
@csrf 복구
@csrf 숨김
@endif
@endforeach
{{ $posts->links() }}
@endif