@extends('layouts.front') @section('title', $cat->name) @section('breadcrumbs') @endsection @section('content')
{{-- 🧭 عنوان القسم --}}

📰 {{ $cat->name }}

تصفح أحدث المقالات ضمن هذا القسم

{{-- 🌿 الأقسام الفرعية --}} @if($cat->children->count())

الأقسام الفرعية

@foreach($cat->children as $child) {{ $child->name }} @endforeach
@endif {{-- 🧾 شبكة المقالات --}} @if($posts->count())
@foreach($posts as $p) @include('front.partials.post-card', ['post' => $p]) @endforeach
{{-- 📑 الترقيم --}}
{{ $posts->links() }}
@else {{-- 🚫 لا توجد مقالات --}}

لا توجد مقالات في هذا القسم حالياً.

@endif
@endsection