@extends('layouts.admin') @section('title', 'Detail Kategori Produk') @section('content')

{{ $productCategory->name }}

Detail kategori produk

Informasi Kategori

Nama Kategori
{{ $productCategory->name }}
Slug
{{ $productCategory->slug }}
Status
@if($productCategory->is_active) Aktif @else Nonaktif @endif
Urutan Tampil
{{ $productCategory->sort_order }}
Jumlah Produk
{{ $productCategory->products->count() }} produk
Dibuat
{{ $productCategory->created_at->format('d M Y H:i') }}
@if($productCategory->description)
Deskripsi
{{ $productCategory->description }}
@endif
@if($productCategory->meta_title || $productCategory->meta_description)

Informasi SEO

@if($productCategory->meta_title)
Meta Title
{{ $productCategory->meta_title }}
@endif @if($productCategory->meta_description)
Meta Description
{{ $productCategory->meta_description }}
@endif
@endif @if($productCategory->products->count() > 0)

Produk Terbaru

Lihat Semua
@foreach($productCategory->products->take(5) as $product)
@if($product->featured_image) {{ $product->name }} @else
@endif

{{ $product->name }}

{{ $product->formatted_final_price }}

@if($product->is_active) Aktif @else Nonaktif @endif
@endforeach
@endif
@if($productCategory->image)

Gambar Kategori

{{ $productCategory->name }}
@endif

Statistik

Total Produk
{{ $productCategory->products->count() }}
Produk Aktif
{{ $productCategory->products->where('is_active', true)->count() }}
Produk Unggulan
{{ $productCategory->products->where('is_featured', true)->count() }}
Stok Habis
{{ $productCategory->products->where('stock', 0)->count() }}
@endsection