{{-- Filtres --}}
@if($reportType !== 'company')
@endif
{{-- Totaux - Cards horizontales --}} @php $totals = $this->getTotals(); @endphp

Factures

{{ number_format($totals['count'], 0, ',', ' ') }}

Total HT

{{ number_format($totals['total_ht'], 0, ',', ' ') }} F

TVA (18%)

{{ number_format($totals['total_tax'], 0, ',', ' ') }} F

Chiffre d'affaires

{{ number_format($totals['total_ttc'], 0, ',', ' ') }} F

{{-- Tableau détaillé --}}

Détail {{ $reportType === 'monthly' ? 'mensuel' : ($reportType === 'customer' ? 'par client' : 'par entreprise') }} - {{ $selectedYear }}

@forelse($this->getReportData() as $index => $row) @empty @endforelse @if(count($this->getReportData()) > 0) @endif
{{ $this->getReportTypeLabel() }} Factures Total HT TVA Total TTC
{{ $row['period'] }} {{ $row['count'] }} {{ number_format($row['total_ht'], 0, ',', ' ') }} F {{ number_format($row['total_tax'], 0, ',', ' ') }} F {{ number_format($row['total_ttc'], 0, ',', ' ') }} F

Aucune donnée pour cette période

Total {{ number_format($totals['count'], 0, ',', ' ') }} {{ number_format($totals['total_ht'], 0, ',', ' ') }} F {{ number_format($totals['total_tax'], 0, ',', ' ') }} F {{ number_format($totals['total_ttc'], 0, ',', ' ') }} F