@extends('layouts.app') @section('title', 'Detail Pembelian #' . $pembelian->id) @section('page-title', 'Detail Pembelian') @section('content')
| Supplier | {{ $pembelian->supplier->name }} |
| Barang | {{ $pembelian->barang->name }} {{ $pembelian->barang->type_label }} |
| Jumlah | {{ number_format($pembelian->qty) }} {{ $pembelian->barang->satuan }} |
| Harga Satuan | Rp {{ number_format($pembelian->harga_satuan, 0, ',', '.') }} |
| Total | Rp {{ number_format($pembelian->total_harga, 0, ',', '.') }} |
| Keterangan | {{ $pembelian->keterangan ?? '—' }} |
| Dicatat | {{ $pembelian->created_at->format('d M Y H:i') }} |