@extends('layouts.site') @php $catTrans = $category->translation($locale); @endphp @section('title', $catTrans?->name) @section('meta_robots', 'noindex, follow') @section('content')

{{ $catTrans?->name }}

@if($catTrans?->description)

{{ $catTrans->description }}

@endif
@foreach($category->posts as $post) @include('partials.post-card', ['post' => $post, 'locale' => $locale]) @endforeach
@if($category->posts->isEmpty())

{{ __('No posts found in this category.') }}

@endif
@endsection