@extends('layouts.app') @section('title', 'Laporan Tanda Terima') @section('page-title', 'Laporan Rekap Tanda Terima') @section('content')
| No. Tanda Terima | Pelanggan | Ref. Invoice | Tanggal | Metode | Jumlah Diterima |
|---|---|---|---|---|---|
| {{ $r->receipt_number }} | {{ $r->customer->name }} | {{ $r->invoice->invoice_number }} | {{ $r->receipt_date->format('d/m/Y') }} | {{ $r->payment_method ?? '-' }} | Rp {{ number_format($r->amount_received, 0, ',', '.') }} |
| Tidak ada data tanda terima | |||||
| TOTAL HALAMAN INI | Rp {{ number_format($receipts->sum('amount_received'), 0, ',', '.') }} | ||||