@extends('layouts.app') @section('title', 'Payments') @section('content')

Payments

Record
@foreach ($payments as $p) @endforeach
# Invoice Patient Amount Method Status
{{ $p->id }} #{{ $p->invoice_id }} {{ $p->patient->user->name ?? '-' }} {{ $p->amount }} {{ $p->method }} {{ $p->status }} Open
{{ $payments->links() }}
@endsection