@extends('layouts.app') @section('title', $barang->name) @section('page-title', 'Detail Barang') @section('content')
{{-- Info Card --}}| Nama | {{ $barang->name }} |
| Tipe | |
| Satuan | {{ $barang->satuan }} |
| Stok | {{ number_format($barang->stock) }} {{ $barang->satuan }} |
| Dibuat | {{ $barang->created_at->format('d M Y H:i') }} |
| Diperbarui | {{ $barang->updated_at->format('d M Y H:i') }} |
| Tanggal | Supplier | Qty | Harga/Satuan | Total |
|---|---|---|---|---|
| {{ $p->tanggal->format('d M Y') }} | {{ $p->supplier->name ?? '-' }} | {{ $p->qty }} {{ $barang->satuan }} | Rp {{ number_format($p->harga_satuan, 0, ',', '.') }} | Rp {{ number_format($p->total_harga, 0, ',', '.') }} |
| Tanggal | Pembeli | Qty | Harga/Satuan | Total |
|---|---|---|---|---|
| {{ $p->tanggal->format('d M Y') }} | {{ $p->pembeli ?? '—' }} | {{ $p->qty }} | Rp {{ number_format($p->harga_satuan, 0, ',', '.') }} | Rp {{ number_format($p->total_harga, 0, ',', '.') }} |