@extends('layouts.admin') @section('title', 'Kelola Produk') @section('page-title', 'Kelola Produk') @section('admin_content')
| Foto | Nama | Kategori | Harga | Stok | Badge | Status | Featured | Aksi |
|---|---|---|---|---|---|---|---|---|
|
@if($product->images->count())
|
{{ $product->name }} | {{ $product->category->name ?? '-' }} | Rp {{ number_format($product->price, 0, ',', '.') }} | @if($product->stock <= 0) 0 @elseif($product->stock <= 5) {{ $product->stock }} @else {{ $product->stock }} @endif | @if($product->badge) {{ $product->badge === 'new' ? 'Baru' : ($product->badge === 'sale' ? 'Sale' : 'Habis Terjual') }} @else — @endif | {{ ($product->status ?? 'active') === 'active' ? 'Aktif' : 'Nonaktif' }} | @if($product->is_featured) @else @endif | |
| Belum ada produk. | ||||||||