@extends('layouts.app') @section('title', 'Laporan Keuangan') @section('page-title', 'Laporan Keuangan (Pengeluaran Nominal)') @section('content')
| No | Barang | Kategori | Total Pemakaian (Qty) | Total Nominal (Rp) |
|---|---|---|---|---|
| {{ $index + 1 }} |
{{ $row['item']->description }}
{{ $row['item']->code }} |
{{ $row['item']->category->name ?? '-' }} | {{ $row['qty_out'] }} {{ $row['item']->unit }} | Rp {{ number_format($row['total_cost'], 0, ',', '.') }} |
| Tidak ada data pengeluaran (ISS/DISP) pada periode ini. | ||||
| TOTAL KESELURUHAN: | Rp {{ number_format($totalNominal, 0, ',', '.') }} | |||