{{ $account->number }}
{{ $account->name }}
@if($account->type === 'revenue') Produit @elseif($account->type === 'expense') Charge @elseif($account->type === 'asset') Actif @else {{ ucfirst($account->type) }} @endif
{{ $account->class }}
@if($account->is_active) Actif @else Inactif @endif
{{ $stats['lines_count'] }}
{{ number_format($stats['total_debit'], 2, ',', ' ') }} €
{{ number_format($stats['total_credit'], 2, ',', ' ') }} €
{{ $balance >= 0 ? '+' : '' }}{{ number_format($balance, 2, ',', ' ') }} €