@extends('layouts.supplier') @section('title', 'Penjualan') @section('content')
{{ $sale->product->sku }}
Belum ada penjualan.
| Tanggal | Produk | Jumlah | Harga per Unit | Pendapatan |
|---|---|---|---|---|
| {{ $sale->created_at->format('d M Y H:i') }} |
{{ $sale->product->name }}{{ $sale->product->sku }} |
{{ $sale->quantity }} | Rp {{ number_format($sale->product->buyPrice, 0, ',', '.') }} | Rp {{ number_format($sale->quantity * $sale->product->buyPrice, 0, ',', '.') }} |
|
Belum ada penjualan. |
||||