@extends('layouts.authenticated') @section('title', 'Produk') @section('page-title', 'Produk') @section('page-content')
Kelola produk dan stok toko Anda
| Produk | Mitra | Kategori | Harga | Stok | Status | @if(!auth()->user()->isCashier() && auth()->user()->role !== 'partner')Aksi | @endif
|---|---|---|---|---|---|---|
|
@if($product->image)
{{ $product->name }} SKU: {{ $product->sku ?? '-' }} |
{{ $product->partner->name ?? '-' }} | {{ $product->category->name ?? 'Uncategorized' }} |
Rp {{ number_format($product->price, 0, ',', '.') }} |
@if($product->stock > 10)
{{ $product->stock }}
@elseif($product->stock > 0)
{{ $product->stock }}
@else
0
@endif
|
{{ $product->is_active ? 'Aktif' : 'Nonaktif' }} | @if(!auth()->user()->isCashier() && auth()->user()->role !== 'partner')
|
@endif
|
Belum ada produk Mulai dengan menambahkan produk pertama Anda |
||||||