@extends('layouts.app') @section('title', 'Laporan Keuangan') @section('page-title', 'Laporan Keuangan (Pengeluaran Nominal)') @section('content')
Reset
{{ $title }}
Total Pengeluaran: Rp {{ number_format($totalNominal, 0, ',', '.') }}
@forelse($report as $index => $row) @empty @endforelse @if(count($report) > 0) @endif
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, ',', '.') }}
@endsection