@extends('template.app') @section('title', 'Detail Transfer Stok') @section('css') @endsection @section('breadcrumb')
| Nama Produk | SKU | Barcode | Jumlah | Satuan | Harga | Total Harga |
|---|---|---|---|---|---|---|
|
{{ $product->product_name }}
@if($product->variasi_1 || $product->variasi_2 || $product->variasi_3)
{{ $product->variasi_1 }} {{ $product->variasi_2 ? ', ' . $product->variasi_2 : '' }} {{ $product->variasi_3 ? ', ' . $product->variasi_3 : '' }} @endif |
{{ $product->sku }} | {{ $product->barcode }} | {{ $product->quantity }} | {{ $product->unit_name }} | Rp {{ number_format($product->price, 0, ',', '.') }} | Rp {{ number_format($product->price * $product->quantity, 0, ',', '.') }} |
| Kategori Biaya | Deskripsi | Jumlah |
|---|---|---|
| {{ $expense->name }} | {{ $expense->description }} | Rp {{ number_format($expense->amount, 0, ',', '.') }} |
| Total Biaya Tambahan | Rp {{ number_format($expenses->sum('amount'), 0, ',', '.') }} | ||
| Metode Pembayaran | Bank | Tanggal Pembayaran | Jumlah |
|---|---|---|---|
| {{ $payment->payment_method }} | {{ $payment->bank_name ?? '-' }} | {{ $payment->payment_date }} | Rp {{ number_format($payment->amount_paid, 0, ',', '.') }} |
| Kembalian | Rp {{ number_format($sisa, 0, ',', '.') }} | ||