@extends('layouts.app') @section('title', 'Pay invoice') @section('section', 'Checkout') @php $cur = config('payments.currency'); $dp = \App\Payments\Support\Currency::decimals($cur); $fmt = fn ($n) => number_format((float) $n, $dp); $due = (float) $sale->due_amount; $isPaid = $due <= 0; $anyGateway = ($configured['myfatoorah'] ?? false) || ($configured['tap'] ?? false); @endphp @section('content') ← Back
Checkout
{{ $isPaid ? 'Amount paid' : 'Amount due' }}
Settled Nothing left to pay on this invoice.
No payment method connected
Add your MyFatoorah or Tap keys to start collecting payments.