{{-- FILTRES --}}
{{-- Filtre par type --}}
{{-- Filtre par exercice fiscal --}}
{{-- BARRE DE RECHERCHE --}}
{{-- TABLEAU --}}
| Description |
Statut |
Voir |
@forelse($transactions as $transaction)
|
|
{{ $transaction->transaction_date->format('d/m/Y') }}
|
{{ Str::limit($transaction->description, 60) }}
|
{{ ucfirst($transaction->type) }}
|
@if($transaction->isDraft())
Brouillon
@else
Validée
@endif
|
{{ number_format($transaction->amount, 2, ',', ' ') }} €
|
|
@empty
|
Aucune écriture trouvée.
|
@endforelse
{{-- PAGINATION --}}
@if($transactions->hasPages())
{{ $transactions->links() }}
@endif