@extends('layouts.front') @section('title', 'الوسم: ' . $tag->name) @section('breadcrumbs') @endsection @section('content')
{{-- 🏷️ عنوان الوسم --}}

{{ $tag->name }}

عرض المقالات المرتبطة بهذا الوسم

{{-- 📰 شبكة المقالات --}} @if($posts->count())
@foreach($posts as $p) @include('front.partials.post-card', ['post' => $p]) @endforeach
{{-- 🔁 ترقيم الصفحات --}}
{{ $posts->links() }}
@else {{-- ⚠️ لا توجد مقالات --}}

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

عُد لاحقاً لمتابعة أحدث المقالات المرتبطة به.

@endif
@endsection