{{-- ============================================================ resources/views/modules/keuangan/ar.blade.php ============================================================ --}} @extends('layouts.app') @section('title','Piutang & Invoice (AR)') @section('breadcrumb')KeuanganPiutang (AR)@endsection @section('content')
Kelola invoice, pembayaran, dan aging piutang pelanggan
| No. Invoice | SO | Pelanggan | Tgl Invoice | Jatuh Tempo | Total | Sudah Bayar | Sisa | Status | Aksi |
|---|---|---|---|---|---|---|---|---|---|
| {{ $inv->no_invoice }} | {{ $inv->salesOrder?->no_so??'-' }} | {{ $inv->pelanggan?->nama??'-' }} | {{ $inv->tgl_invoice?->format('d/m/Y') }} | {{ $inv->tgl_jatuh_tempo?->format('d/m/Y') }}@if($overdue) {{ now()->diffInDays($inv->tgl_jatuh_tempo) }}h lalu @endif |
Rp {{ number_format($inv->total_invoice,0,',','.') }} | Rp {{ number_format($inv->total_bayar,0,',','.') }} | Rp {{ number_format($sisa,0,',','.') }} | {{ $sLbl }} |