Exercices fiscaux

@if(auth()->user()->hasPermission('accounting-manage')) @endif
{{-- TABLEAU --}}
@forelse($fiscalYears as $fiscalYear) @empty @endforelse
Résultat Écritures Produits Charges Actions
@if(auth()->user()->hasPermission('accounting-view')) {{ $fiscalYear->id }} @else {{ $fiscalYear->id }} @endif
@if($fiscalYear->status === 'open') Ouvert @else Clôturé @endif
{{ $fiscalYear->result >= 0 ? '+' : '' }}{{ number_format($fiscalYear->result, 2, ',', ' ') }} €
{{ $fiscalYear->transactions_count }}
{{ number_format($fiscalYear->total_income, 2, ',', ' ') }} €
{{ number_format($fiscalYear->total_expense, 2, ',', ' ') }} €
@if(auth()->user()->hasPermission('accounting-manage')) @if($fiscalYear->canBeEdited()) @else @endif @endif
Aucun exercice fiscal trouvé.
{{-- PAGINATION --}} @if($fiscalYears->hasPages())
{{ $fiscalYears->links() }}
@endif