@extends('layouts.app') @section('content')
Tanggal | Kategori | Barang | Jumlah | Masuk | Keluar |
---|---|---|---|---|---|
{{ $item->tanggal }} | {{ $item->kategori }} | {{ $item->barang ?? '-' }} | Rp {{ number_format($item->jumlah, 0, ',', '.') }} | @if ($item instanceof App\Models\SosialKasPemasukan) Rp {{ number_format($item->jumlah, 0, ',', '.') }} @else - @endif | @if ($item instanceof App\Models\SosialKasPengeluaran) Rp {{ number_format($item->jumlah, 0, ',', '.') }} @else - @endif |
Total Masuk | Rp {{ number_format($total_pemasukan, 0, ',', '.') }} | ||||
Total Keluar | Rp {{ number_format($total_pengeluaran, 0, ',', '.') }} | ||||
Saldo Akhir | Rp {{ number_format($saldo_akhir, 0, ',', '.') }} |