{{ __('Payment Detail') }}
Billings
{{ $invoice->customer_paket->user->full_name }} {{ trans('customer.label.address') }}: {{ $invoice->customer_paket->full_customer_billing_address }} {{ trans('customer.label.email') }}: {{ $user->email ?? '-' }} {{ trans('customer.label.phone') }}: {{ $invoice->customer_paket->customer_billing_address->phone ?? '-' }}
{{ trans('billing.table.no') }} {{ trans('Invoice Number') }} {{ trans('Transaction ID') }} {{ trans('Amount') }} {{ trans('Refund') }} {{ trans('Recontiliation') }} {{ trans('Method') }} {{ trans('Teller') }} Note {{ trans('billing.table.action') }} @forelse ($payments as $key => $payment) {{ ($payments->currentpage() - 1) * $payments->perpage() + $loop->index + 1 }} {{ $this->invoice->invoice_number }} {{ $payment->transaction_id }} @moneyIDR($payment->amount) @moneyIDR($payment->refunded_amount) - {{ $payment->refund_status }} {{$payment->reconciliation_status}} @if($payment->reconciliation_notes)- {{$payment->reconciliation_notes}}@endif {{ $payment->payment_method }} @if ($payment->bank) - {{ $payment->bank }}@endif {{ $payment->teller }} {{ $payment->notes }} @if ($payment->remaining_refundable_amount > 0) {{ __('billing.button.refund') }} @endif @empty
{{ trans('Payment not found') }}
@endforelse
@if ($payments->hasPages())
{{ $payments->links() }}
@endif