@extends('layouts.app') @section('title', 'Laporan Tanda Terima') @section('page-title', 'Laporan Rekap Tanda Terima') @section('content')
Laporan Rekap Tanda Terima
Reset
Total Tanda Terima
{{ $summary->total_receipts }}
Total Penerimaan
Rp {{ number_format($summary->total_amount, 0, ',', '.') }}
@forelse($receipts as $r) @empty @endforelse @if($receipts->count() > 0) @endif
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, ',', '.') }}
@if($receipts->hasPages()) @endif
@endsection