@extends('layouts.app') @section('title', 'Kelola Produk') @section('page-title', 'Kelola Produk') @section('content')
| Produk | SKU / Barcode | Kategori | Harga Modal | Harga Jual | Margin | Stok | Status | Aksi |
|---|---|---|---|---|---|---|---|---|
|
@if($product->image)
{{ $product->name }}
{{ $product->unit }}
|
{{ $product->sku }}
@if($product->barcode)
{{ $product->barcode }}
@endif
|
@if($product->category) {{ $product->category->name }} @else — @endif | Rp {{ number_format($product->cost_price, 0, ',', '.') }} | Rp {{ number_format($product->selling_price, 0, ',', '.') }} | {{ number_format($product->margin, 1) }}% | @if(!$product->track_stock) ∞ @else {{ $product->stock }} @endif | {{ $product->is_active ? 'Aktif' : 'Nonaktif' }} | |
|
📦
Tidak ada produk
|
||||||||