@extends('frontend.layouts.user.index') @section('title', __('My QR Code')) @section('content')
{{ __('My Wallets') }}
@if($wallets->isNotEmpty())
{{ __('Receive with confidence') }}

{{ __('Share a QR or link with the payer. Your own receive QR does not open a self-send action here.') }}

@foreach($wallets as $wallet) @php $receiveMoneyUrl = $wallet->receiveMoneyUrl(); $shareTitle = __(':site_title :currency Receive QR', ['site_title' => setting('site_title'), 'currency' => $wallet->currency->code]); $shareText = __('Use this :site_title QR link to send money to my :currency wallet.', ['site_title' => setting('site_title'), 'currency' => $wallet->currency->code]); @endphp
{!! $wallet->receiveMoneyQrCodeSvg(260) !!}
{{ __('Receive only') }}
{{ $wallet->currency->code }}
{{ $wallet->currency->code }}

{{ __('Wallet ID') }} {{ implode(' ', str_split($wallet->uuid, 3)) }}

{{ __('Balance') }} {{ $wallet->currency->symbol }}{{ number_format($wallet->balance, 2) }}
{{ __('Currency') }} {{ $wallet->currency->name }}
{{ __('Rate') }} 1 {{ siteCurrency() }} = {{ $wallet->currency->exchange_rate }} {{ $wallet->currency->code }}
@endforeach
@else @endif
@endsection