@extends('layouts.site') @section('meta_title') {{ __('site.nav_blog') }} — {{ brand_name() }} @endsection @section('title', __('site.nav_blog')) @section('content') @if (request()->filled('category_id')) @php($filterCat = \App\Models\Category::query()->find(request()->integer('category_id'))) @endif

{{ __('site.nav_blog') }}

@if(request()->filled('category_id')) @php($current = \App\Models\Category::query()->find(request()->integer('category_id'))) @if($current)

{{ locale_category_name($current) }}

@endif @endif
@if ($articles->total() === 0)

{{ __('site.empty_articles') }}

@else
    @foreach ($articles as $article) @endforeach
@endif
@if (request()->filled('category_id')) @include('partials.site.related-discovery', [ 'categoryId' => $categoryId ?? request()->integer('category_id'), 'relatedProducts' => $relatedProducts ?? collect(), 'relatedServices' => $relatedServices ?? collect(), 'relatedArticles' => $relatedArticles ?? collect(), ]) @endif
@endsection