💰 WEBMoney - Alerta de Pagamentos

Olá, {{ $userName }}!

💳 Saldo Total Disponível {{ number_format($totalAvailable, 2, ',', '.') }} {{ $currency }}
📋 Total a Pagar {{ number_format($totalDue, 2, ',', '.') }} {{ $currency }}
@if($shortage > 0)
⚠️ Falta {{ number_format($shortage, 2, ',', '.') }} {{ $currency }}
@else
✅ Situação Saldo suficiente!
@endif
@if($shortage > 0)

⚠️ SALDO INSUFICIENTE

-{{ number_format($shortage, 2, ',', '.') }} {{ $currency }}

Você não tem saldo suficiente para cobrir todos os pagamentos.

@endif

💳 Saldo das Contas

@foreach($accountBalances as $account) @endforeach
@if(count($overdueItems) > 0)

🔴 Pagamentos Vencidos ({{ count($overdueItems) }})

@foreach($overdueItems as $item)
{{ $item['description'] }} {{ number_format($item['amount'], 2, ',', '.') }} {{ $item['currency'] }}
{{ $item['days_overdue'] }} dias de atraso • Venceu em {{ \Carbon\Carbon::parse($item['due_date'])->format('d/m/Y') }} @if($item['account_name']) • Conta: {{ $item['account_name'] }} @endif
@endforeach
@endif @if(count($tomorrowItems) > 0)

🟡 Vencem Amanhã ({{ count($tomorrowItems) }})

@foreach($tomorrowItems as $item)
{{ $item['description'] }} {{ number_format($item['amount'], 2, ',', '.') }} {{ $item['currency'] }}
Amanhã • {{ \Carbon\Carbon::parse($item['due_date'])->format('d/m/Y') }} @if($item['account_name']) • Conta: {{ $item['account_name'] }} @endif
@endforeach
@endif @if(count($payableItems) > 0)

✅ Pagamentos Possíveis ({{ count($payableItems) }})

Com base no saldo atual, você consegue pagar:

@foreach($payableItems as $item)
{{ $item['description'] }} {{ number_format($item['amount'], 2, ',', '.') }} {{ $item['currency'] }}
✓ Pode pagar @if($item['account_name']) • Conta: {{ $item['account_name'] }} @endif
@endforeach
@endif @if(count($unpayableItems) > 0)

❌ Sem Saldo Suficiente ({{ count($unpayableItems) }})

Não há saldo disponível para estes pagamentos:

@foreach($unpayableItems as $item)
{{ $item['description'] }} {{ number_format($item['amount'], 2, ',', '.') }} {{ $item['currency'] }}
✗ Sem saldo @if($item['account_name']) • Conta: {{ $item['account_name'] }} @endif
@endforeach
@endif @if(count($transferSuggestions) > 0)

💱 Sugestões de Transferência

Para cobrir os pagamentos, considere transferir entre suas contas:

@foreach($transferSuggestions as $transfer)
{{ $transfer['from_account'] }}
Origem
{{ $transfer['to_account'] }}
Destino
{{ number_format($transfer['amount'], 2, ',', '.') }} {{ $currency }}
{{ $transfer['reason'] }}
@endforeach
@endif
Acessar WEBMoney