@php use App\Services\RevenueEstimation\RevenueEstimationResult; /** @var RevenueEstimationResult $result */ @endphp

Hypothèses et limites

Dividendes nets estimés sur 1 an (après PFU)

{{ \Illuminate\Support\Number::currency($result->dividendeNetAnnuel, 'EUR', 'fr') }}

@foreach ($result->sections as $section)

{{ $section->title }}

@foreach ($section->lines as $line) @endforeach
Libellé Montant Détail
{{ $line->label }} @if ($line->amount !== null) @if (str_contains($line->label, 'Joueurs sur la période') || str_contains($line->label, 'Nombre de salariés')) {{ \Illuminate\Support\Number::format($line->amount, null, 2, 'fr') }} @else {{ \Illuminate\Support\Number::currency($line->amount, 'EUR', 'fr') }} @endif @else — @endif {{ $line->note ?? '' }}
@endforeach