@extends('layouts.app') @section('title', 'Tambah Pembayaran') @section('breadcrumb')
| Invoice | {{ $invoice->invoice_number }} |
| Pelanggan | {{ $invoice->serviceOrder->customer->name }} |
| Total | Rp {{ number_format($invoice->total, 0, ',', '.') }} |
| Dibayar | Rp {{ number_format($invoice->paid_amount, 0, ',', '.') }} |
| Sisa | Rp {{ number_format($invoice->remaining_amount, 0, ',', '.') }} |