@extends('layouts.admin')
@section('title', 'Kategori Produk')
@section('content')
Tambah Kategori
Buat kategori baru untuk mengelompokkan produk Anda
Daftar Kategori
Atur dan kelola semua kategori produk Anda
| Nama Kategori |
Jumlah Produk |
Aksi |
@forelse ($categories as $cat)
|
{{ $cat->name }}
SLUG: {{ $cat->slug }}
|
{{ $cat->products_count }} PRODUK
|
@if ($cat->products_count == 0)
@else
Sedang Digunakan
@endif
|
@empty
|
|
@endforelse
@endsection