@extends('layouts.customer') @section('title', 'Tagihan') @section('content')
| No. Invoice | Periode | Jatuh Tempo | Total | Status | Aksi |
|---|---|---|---|---|---|
| {{ $invoice->invoice_number }} | {{ $invoice->period ?? $invoice->created_at->format('F Y') }} | {{ $invoice->due_date->format('d M Y') }} | Rp {{ number_format($invoice->total, 0, ',', '.') }} | @if($invoice->status == 'paid') Lunas @elseif($invoice->due_date < now()) Jatuh Tempo @else Belum Bayar @endif | @if($invoice->status == 'unpaid') Bayar @else Detail @endif |
|
Belum ada tagihan |
|||||