@extends('layouts.admin') @section('title', 'Data Produk') @section('content')
{{ $cat->products_count }} Produk
Ditemukan {{ count($products) }} produk yang cocok
@elseMengelola produk dalam kategori {{ $activeCat ? $activeCat->name : 'Semua' }}
@endif| Nama Produk | Kategori | Berat | Harga | Aksi |
|---|---|---|---|---|
|
@if ($p->main_image)
{{ $p->name }} {{ $p->availability }} |
{{ $p->category->name ?? 'Umum' }} | {{ $p->weight }} gram |
@if ($p->price_to > $p->price) Rp {{ number_format($p->price, 0, ',', '.') }} - Rp {{ number_format($p->price_to, 0, ',', '.') }} @else Rp {{ number_format($p->price, 0, ',', '.') }} @endif |
|
|
Belum Ada Produk di Kategori Ini |
||||