Valor do Crédito
1 Crédito = R$ {{ number_format($creditValueBRL, 2, ',', '.') }}
Receita Total
R$ {{ number_format($totalRevenue, 2, ',', '.') }}
Créditos em Circulação
{{ number_format($totalCreditsInCirculation, 2, ',', '.') }}
R$ {{ number_format($totalCreditsInCirculationMoney, 2, ',', '.') }}
Créditos Vendidos
{{ number_format($totalCreditsSold, 2, ',', '.') }}
R$ {{ number_format($totalCreditsSoldMoney, 2, ',', '.') }}
Créditos Consumidos
{{ number_format($totalConsumptions, 2, ',', '.') }}
R$ {{ number_format($totalConsumptionsMoney, 2, ',', '.') }}
R$ {{ number_format($currentMonthSales, 2, ',', '.') }}
{{ now()->format('F/Y') }}
R$ {{ number_format($lastMonthSales, 2, ',', '.') }}
{{ now()->subMonth()->format('F/Y') }}
{{ $salesGrowth >= 0 ? '+' : '' }}{{ number_format($salesGrowth, 1, ',', '.') }}%
Comparado ao mês anterior
Nenhuma venda registrada ainda.
@endforelse| Cliente | Créditos | Total Gasto |
|---|---|---|
| {{ $client->user->name ?? 'Usuário removido' }} @if($client->user?->client_code) #{{ $client->user->client_code }} @endif | {{ number_format($client->total_credits, 2, ',', '.') }} | R$ {{ number_format($client->total_spent, 2, ',', '.') }} |
| Nenhum cliente ainda. | ||
{{ $purchase->user->name }} @if($purchase->user->client_code) #{{ $purchase->user->client_code }} @endif
{{ number_format($purchase->amount, 2, ',', '.') }} créditos - R$ {{ number_format($purchase->price, 2, ',', '.') }}
Nenhuma compra pendente.
@endforelse{{ $transaction->user->name ?? 'Usuário removido' }} @if($transaction->user?->client_code) #{{ $transaction->user->client_code }} @endif
{{ $transaction->description }}
{{ $transaction->type === 'credit' ? '+' : '-' }}{{ number_format($transaction->amount, 2, ',', '.') }}
{{ $transaction->created_at->format('d/m H:i') }}
Nenhuma transação registrada.
@endforelse