@extends('layouts.app') @section('title', $category->{locale_field('name')}) @push('styles') @endpush @section('content') {{-- ══ HERO ══ --}}
{{ is_locale_en() ? 'Product Category' : 'Kategori Produk' }}

{{ $category->{locale_field('name')} }}

@if($category->{locale_field('description')})

{{ $category->{locale_field('description')} }}

@endif
{{-- ══ PRODUCTS GRID ══ --}}
{{-- Filter Tabs --}} {{-- Grid --}}
@if($products->count() > 0) {{-- Cards --}} @else {{-- Empty state --}}

{{ is_locale_en() ? 'No products found in this category.' : 'Tidak ada produk di kategori ini.' }}

@endif {{-- Pagination --}} @if($products->lastPage() > 1)
@for($i = 1; $i <= $products->lastPage(); $i++) {{ $i }} @endfor
@endif
{{-- ══ CTA ══ --}}
{{ is_locale_en() ? 'Not What You\'re Looking For?' : 'Bukan yang Anda Cari?' }}

{{ is_locale_en() ? 'Custom Solutions' : 'Solusi Kustom' }} {{ is_locale_en() ? 'Available' : 'Tersedia' }}

{{ is_locale_en() ? 'We provide OEM/ODM services tailored to your specific requirements.' : 'Kami menyediakan layanan OEM/ODM yang disesuaikan dengan kebutuhan spesifik Anda.' }}

{{ is_locale_en() ? 'Inquire Now' : 'Hubungi Kami' }} →
@endsection