@extends('layouts.app') @section('content')
Invoice Payments
@can('create payments') @endcan
@foreach($payments as $payment) @endforeach
Customer Invoice No Amount Balance Received By
{{ $payment?->invoice?->customer?->name }} INV{{ sprintf("%05d",$payment?->invoice?->invoice_no) }} {{ number_format($payment->amount) }} {{ number_format($payment->balance) }} {{ $payment->user->name }}
@endsection