Deploy Ladill Events / deploy (push) Successful in 32s
Update registration settlement and payouts copy for the new Ladill Pay tiers. Co-authored-by: Cursor <cursoragent@cursor.com>
25 lines
1.5 KiB
PHP
25 lines
1.5 KiB
PHP
<x-user-layout>
|
|
<x-slot name="title">Payments & Payouts</x-slot>
|
|
@php $fmt = fn ($m) => 'GHS '.number_format($m / 100, 2); @endphp
|
|
<div class="space-y-6">
|
|
<div>
|
|
<h1 class="text-xl font-semibold text-slate-900">Payments & Payouts</h1>
|
|
<p class="mt-1 text-sm text-slate-500">Ticket and contribution revenue settles into your Ladill wallet (9% tickets / 5% contributions).</p>
|
|
</div>
|
|
<div class="grid gap-4 sm:grid-cols-2">
|
|
<div class="rounded-2xl border border-slate-200 bg-white p-6">
|
|
<p class="text-xs font-medium uppercase tracking-wide text-slate-400">Total event revenue</p>
|
|
<p class="mt-2 text-3xl font-semibold text-slate-900">{{ $fmt($revenueMinor) }}</p>
|
|
</div>
|
|
<div class="rounded-2xl border border-slate-200 bg-white p-6">
|
|
<p class="text-xs font-medium uppercase tracking-wide text-slate-400">Wallet balance</p>
|
|
<p class="mt-2 text-3xl font-semibold text-slate-900">{{ $fmt($balanceMinor) }}</p>
|
|
<a href="{{ route('account.wallet') }}" class="mt-4 inline-block text-sm font-medium text-indigo-600 hover:text-indigo-800">View wallet →</a>
|
|
</div>
|
|
</div>
|
|
<div class="rounded-2xl border border-amber-100 bg-amber-50/60 px-6 py-4 text-sm text-amber-800">
|
|
Per-event transaction history and bank/MoMo withdrawals will appear here as Ladill Pay integration completes.
|
|
</div>
|
|
</div>
|
|
</x-user-layout>
|