@extends('template.app') @section('title', 'Detail Biaya Pengeluaran') @section('css') @endsection @section('breadcrumb')
| Kategori Biaya | Pengguna | Catatan | Jumlah |
|---|---|---|---|
| {{ $item->expense_category_name }} | {{ $item->user_name }} | {{ $item->note }} | Rp {{ number_format($item->amount, 0, ',', '.') }} |
| Total Biaya | Rp {{ number_format($items->sum('amount'), 0, ',', '.') }} | |||
| Metode Pembayaran | Bank | Tanggal Pembayaran | Jumlah |
|---|---|---|---|
| {{ $payment->payment_method }} | {{ $payment->bank_name ?? '-' }} | {{ $payment->payment_date }} | Rp {{ number_format($payment->amount_paid, 0, ',', '.') }} |
| Kembalian | Rp {{ number_format($sisa, 0, ',', '.') }} | ||