@extends('layouts.owner') @section('breadcrumb') Keuangan / Verifikasi Pembayaran @endsection @section('content')

Verifikasi Pembayaran

Tinjau dan konfirmasi bukti transfer yang dikirim oleh penghuni.

@if($payments->isEmpty())

Semua pembayaran beres!

Tidak ada antrian pembayaran yang menunggu verifikasi saat ini.

@else @foreach($payments as $payment)
{{ substr($payment->invoice->resident->user->name, 0, 1) }}

{{ $payment->invoice->resident->user->name }}

{{ $payment->invoice->lease->room->property->name }}

#{{ $payment->invoice->invoice_number }}

{{ \Carbon\Carbon::create()->month($payment->invoice->period_month)->translatedFormat('F') }} {{ $payment->invoice->period_year }}

Rp {{ number_format($payment->amount, 0, ',', '.') }}

{{ $payment->transfer_date->translatedFormat('d M Y') }} @if($payment->proof_image) @else No Image @endif
Tinjau
@endforeach
@endif @endsection