Overview @php $fmt = fn ($m) => 'GHS '.number_format($m / 100, 2); @endphp

QR Plus

@include('partials.mobile-header-btn', [ 'href' => route('user.qr-codes.create'), 'label' => 'Create code', 'variant' => 'indigo', 'attributes' => '@click="goOrTopup($event)"', ])

Wallet balance

{{ $fmt($balanceMinor) }}

Active codes

{{ $activeCount }}

Scans (30d)

{{ number_format($scans30d) }}

Recent codes

@include('partials.mobile-icon-link', [ 'href' => route('user.qr-codes.create'), 'label' => 'Create code', 'icon' => 'plus', 'desktopClass' => 'text-sm font-medium text-indigo-600 hover:text-indigo-800', 'attributes' => '@click="goOrTopup($event)"', ])
@if($recentCodes->isEmpty())

No QR codes yet. Create your first code.

@else @endif
{{-- Two-step add-funds modal (create links open this when balance is too low) --}}