@extends('layouts.authenticated') @section('title', 'Kategori') @section('page-title', 'Kategori') @section('page-content')

Kategori Produk

Kelompokkan produk Anda berdasarkan kategori

@forelse($categories as $index => $cat)

{{ $cat->name }}

{{ $cat->slug }}

Jumlah Produk

{{ number_format($cat->products_count) }}

@if($cat->description)

{{ Str::limit($cat->description, 60) }}

@endif
@empty

Belum Ada Kategori

Mulai dengan menambahkan kategori pertama Anda.

@endforelse
@push('styles') @endpush @endsection