@if ($po) @endif
Supplier : Data Transaksi : Kode Transaksi : {{ $po->transaction_code }}
{{ ($po->suppliers) ? $po->suppliers->name : '' }}
{{ ($po->suppliers) ? $po->suppliers->address : '' }}
{{ ($po->suppliers) ? $po->suppliers->phone : '' }}
No Nota
Tgl Nota
Pembayaran
status
Diinput Oleh
: {{ $po->invoice_number}}
: {{ \Carbon\Carbon::parse($po->invoice_date)->format('d-m-Y') }}
: {{ $po->payment_method }}
: {{ $po->status }}
: {{ $po->created_by }}
Detail Barang
@php $total = 0; @endphp @if ($po->details->count() > 0) @foreach ($po->details as $keys => $value) @php $total += $value->subtotal; @endphp @endforeach @endif @if ($total > 0) @endif
# Kode Item Nama Item Jumlah Harga Satuan (Rp.) Total (Rp.)
{{ $keys+1 }} {{ ($value->sparepart) ? $value->sparepart->part_number : '' }} {{ ($value->sparepart) ? $value->sparepart->name : '' }} {{ $value->quantity }} {{ number_format($value->perpiece, 2, ',', '.') }} {{ number_format($value->subtotal, 2, ',', '.') }}
Total (Rp.) {{ number_format($total,2,',','.') }}

Yogyakarta, {{ date('d F Y') }}

Irwan Nugroho


Catatan :

{!! $po->remark !!}