@extends('layouts.app') @section('title', $title ?? $tag->name . ' — ' . __('pages.blog_title')) @section('content') @include('sections.blog.hero') {{-- Breadcrumb with tag name --}} {{-- Category filter — active tag highlighted --}} {{-- Article grid --}}
@if($articles->isNotEmpty()) {{-- Featured article (first) --}} {{-- Compact cards grid with GSAP stagger --}} @if($articles->count() > 1)
@foreach($articles->skip(1) as $article) @endforeach
@endif {{-- Pagination --}} @else {{-- Empty tag state --}}

{{ __('blog.empty_state_tag') }}

{{ __('blog.reset_filters') }}
@endif
@endsection