@extends('layouts.blog') @section('meta_title', $category->effective_meta_title) @section('meta_description', $category->effective_meta_description) @section('canonical_url', $category->url) @section('content') {{-- Breadcrumb --}}
{{-- Main Content --}}

{{ $category->name }}

@if($category->description)

{{ $category->description }}

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

{{ $post->title }}

{{ $post->excerpt }}

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