@extends('layouts.admin') @section('title', 'Payments') @section('page-title', 'Payments') @section('header-actions') add Record Payment @endsection @section('content')
Clear
@forelse($payments as $payment) @empty @endforelse
Payment # Invoice Customer Date Method Amount Status Actions
{{ $payment->payment_number }} {{ $payment->invoice->invoice_number }} {{ $payment->customer->name }} {{ $payment->payment_date->format('M d, Y') }} {{ ucfirst(str_replace('_', ' ', $payment->payment_method)) }} {{ \App\Models\Currency::formatAmount($payment->amount, $payment->currency) }} {{ ucfirst($payment->status) }} visibility
payments

No payments found

@if($payments->hasPages())
{{ $payments->links() }}
@endif
@endsection