@foreach ($order->payments as $payment) @endforeach
Paid Amount Date Note Refund Amount Created By Action(s)
AUD ${{ numberFormat($payment->amount) }}
{{ $payment->payment_approval }}
{{ $payment->date_formatted }} {{ $payment->note }}
AUD ${{ numberFormat($payment->refunds->sum('amount')) }}


{{ $payment->created_by }} @if ($payment->canDelete()) @endif @can('add-edit-refund') @if(!isArchived($order->archive) && ($payment->amount - $payment->refunds->sum('amount')) > 0) @endif @endcan
@can('add-edit-payment') @if(!isArchived($order->archive) && $order->due_amount > 0)
@csrf
Add Payment
@error('amount') {{ $errors->first('amount') }} @enderror
@error('date') {{ $errors->first('date') }} @enderror
@error('note') {{ $errors->first('note') }} @enderror
@endif @endcan