Donation checkout via Ladill Pay (9% fee), church/giving QR pages, SSO, and platform scan forwarding. Co-authored-by: Cursor <cursoragent@cursor.com>
14 lines
824 B
PHP
14 lines
824 B
PHP
<x-user-layout>
|
|
<x-slot name="title">Billing</x-slot>
|
|
@php $fmt = fn ($m) => 'GHS '.number_format($m / 100, 2); @endphp
|
|
<div class="mx-auto max-w-3xl">
|
|
<h1 class="text-xl font-semibold tracking-tight text-slate-900">Billing</h1>
|
|
<p class="mt-0.5 text-sm text-slate-500">QR code creation is billed from your Ladill wallet (GHS {{ number_format(config('qr.price_per_qr_ghs', 5), 2) }} per code).</p>
|
|
<div class="mt-6 rounded-2xl border border-slate-200 bg-white p-6">
|
|
<p class="text-xs font-medium uppercase tracking-wide text-slate-400">Current balance</p>
|
|
<p class="mt-1 text-3xl font-semibold text-slate-900">{{ $fmt($balanceMinor) }}</p>
|
|
<a href="{{ $topupUrl }}" class="btn-primary mt-4">Top up wallet</a>
|
|
</div>
|
|
</div>
|
|
</x-user-layout>
|