@extends('layouts.app') @section('title', $title ?? __('pages.blog_title')) @section('content') @include('sections.blog.hero') {{-- Breadcrumb --}} {{-- Category filter --}} {{-- 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 state --}}

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

{{ __('navigation.contact_us') }}
@endif
@endsection