@extends('layouts.site') @section('title', 'Pierre2.net') @section('content')
@foreach($categories as $category) @php $catTrans = $category->translation($locale); @endphp @if($catTrans)
@foreach($category->posts->take(6) as $post) @include('partials.post-card', ['post' => $post, 'locale' => $locale]) @endforeach
@if($category->posts->count() > 6) @endif
@endif @endforeach
@endsection