@extends('layouts.supplier') @section('title', 'Produk Saya') @section('content')
Kelola daftar dan status pengajuan produk konsinyasi Anda
Belum ada produk diajukan.
Ajukan Produk Pertama Anda| Produk | Kategori | Harga per Unit | Stok Minimarket | 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 }} pcs @else 0 pcs @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) Disetujui @else Stok Habis @endif @else Non-aktif @endif | |
|
Belum ada produk diajukan. Ajukan Produk Pertama Anda |
||||||