@extends('backoffice.template.app') @push('scripts') @if (session('success')) @endif @endpush @section('content')
Nama
{{ $pelangganpdam->nama }}
NIK
{{ $pelangganpdam->nik }}
Alamat
{{ $pelangganpdam->alamat }}
| # | Meter Awal | Meter Akhir | Tarif 1 | Tarif 2 | beban | Nominal | Tanggal Tagihan | Status | Action |
|---|---|---|---|---|---|---|---|---|---|
| {{ $index + 1 }} | {{ $tagihan->meter_awal }} | {{ $tagihan->meter_akhir }} | Rp. {{ number_format($tagihan->tarif_1, 0, 0, '.') }} | Rp. {{ number_format($tagihan->tarif_2, 0, 0, '.') }} | Rp. {{ number_format($tagihan->beban, 0, 0, '.') }} | Rp. {{ number_format($tagihan->nominal, 0, 0, '.') }} | {{ date('d-m-Y', strtotime($tagihan->created_at)) }} | @switch($tagihan->is_lunas) @case(true) Lunas @break @case(false) Pending @break @endswitch |