@extends('components.layouts.platform-app') @section('title', '태그모아') @section('content')
새로고침
검색 @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
{{ $post->source_board_title }}

{{ $post->title }}

{{ $tenantName }}
@if ($post->meta_description)

{{ $post->meta_description }}

@endif
작성일 {{ optional($post->published_at)->format('Y-m-d H:i') ?? '-' }}
@foreach ($tags as $tag) {{ $tag }} @endforeach
@endforeach
{{ $posts->links() }}
@endif
@endsection