@extends('template.app') @section('title', 'Detail Biaya Pengeluaran') @section('css') @endsection @section('breadcrumb')
| Nama | Jumlah |
|---|---|
| {{ $expense->category_name }} | Rp {{ number_format($expense->amount, 0, ',', '.') }} |
| Total Biaya | Rp {{ number_format($expenses->sum('amount'), 0, ',', '.') }} |
| Metode Pembayaran | Bank | Tanggal Pembayaran | Jumlah |
|---|---|---|---|
| {{ $payment->payment_method }} | {{ $payment->bank_name ?? '-' }} | {{ date('d-m-Y', strtotime($payment->created_at)) }} | Rp {{ number_format($payment->amount_paid, 0, ',', '.') }} |