Total Entrées

{{ money($totalIn) }}

Total Sorties

{{ money($totalOut) }}

Solde

{{ money($balance) }}

@if ($transactions->count() > 0) @foreach($transactions as $trx) @endforeach @else @endif
Référence Date Type Montant Note Source
{{ $trx->reference }} {{ \Carbon\Carbon::parse($trx->date)->format('d/m/Y') }} @if($trx->type == 'entry') Entrée @else Sortie @endif {{ $trx->type == 'outing' ? '-' : '+' }} {{ money($trx->amount) }} {{ $trx->description }} @if($trx->expense_id) {{ $trx->expense->personal->fullname ?? '-' }} @elseif($trx->payment_id) {{ $trx->payment->commande->client->fullname ?? '-' }} ({{ $trx->payment->commande->client->contact ?? '-' }}) @else - @endif
Aucune transaction.