@extends('layouts.supplier') @section('title', 'Produk Saya') @section('content')
Kelola daftar produk konsinyasi Anda.
Dari maks {{ $supplier->maxActiveProducts }} produk
Belum ada produk.
Tambah produk pertama Anda| Produk | Kategori | Harga Satuan | Stok Toko | Performa | Status | Aksi |
|---|---|---|---|---|---|---|
|
@if($product->image)
{{ $product->name }}{{ $product->sku }} |
{{ $product->category->name ?? '-' }} | Rp {{ number_format($product->buyPrice, 0, ',', '.') }} | @if($product->approvalStatus === 'APPROVED') @if($product->stock > 0) {{ $product->stock }} @else 0 @endif @else - @endif |
@if($totalSold > 0 || $totalReturned > 0)
@if($totalSold > 0)
{{ $totalSold }}
@endif
@if($totalReturned > 0)
@if($totalSold > 0)
•
@endif
{{ $totalReturned }}
@endif
@else
-
@endif
|
@if($product->approvalStatus === 'PENDING') Menunggu Review @elseif($product->approvalStatus === 'REJECTED') Ditolak @elseif($product->approvalStatus === 'APPROVED') @if($product->stock > 0) Aktif @else Stok Habis @endif @else Non-aktif @endif | |
|
Belum ada produk. Tambah produk pertama Anda |
||||||