@extends('layouts.app') @section('content')
Supplier: {{ $purchasing->supplier->name }}
Tanggal PO: {{ $purchasing->po_date }}
Status: {{ $purchasing->status }}
Nama Barang | Qty | Harga | Subtotal | Aksi | |
---|---|---|---|---|---|
{{ $item->product_name }} | {{ $item->quantity }} | Rp {{ number_format($item->purchase_price, 0, ',', '.') }} | Rp {{ number_format($item->subtotal, 0, ',', '.') }} | {{ $item->is_stocked_in ? '✅ Masuk' : '❌ Belum' }} | @if($purchasing->status === 'Approved') @endif |
Belum ada barang |