@extends('layouts.blog') @section('meta_title', 'Tag: ' . $tag->name) @section('meta_description', 'Posts tagged with ' . $tag->name) @section('content') {{-- Breadcrumb --}}
{{-- Main Content --}}

{{ $tag->name }}

{{ $posts->total() }} posts found

@forelse($posts as $post)
@if($post->featured_image_url) {{ $post->title }} @else {{ $post->title }} @endif
@if($post->category) {{ $post->category->name }} @endif

{{ $post->title }}

{{ $post->excerpt }}

{{ $post->published_at->format('d M Y') }} {{ number_format($post->views_count) }}
@empty
Tidak ada post dengan tag ini.
@endforelse
{{-- Pagination --}}
{{ $posts->links('vendor.pagination.blog') }}
{{-- Sidebar --}}
{{-- Popular Posts --}} {{-- Tags --}}
@endsection