@extends('layouts.master') @section('title') Statistiques Marche @endsection @section('content')
@if(session()->has('success'))
@endif @if(session()->has('errors'))
@endif

Statistiques du Marché: {{ $marche->reference }}

Montant Global

{{ number_format($marche->cout_initial, 2, ',', ' ') }} FCFA

Montant Facturé

{{ number_format($statistiques['montant_total_facture'], 2, ',', ' ') }} FCFA

Montant Restant

{{ number_format($statistiques['montant_restant'], 2, ',', ' ') }} FCFA

Progression

{{ $statistiques['progression'] }}%

Répartition par exercice
@foreach($statistiques['repartition_par_exercice'] as $repartition) @endforeach
Exercice Alloué Utilisé Reste
{{ $repartition['exercice'] }} {{ number_format($repartition['montant_alloue'], 2, ',', ' ') }} FCFA {{ number_format($repartition['montant_utilise'], 2, ',', ' ') }} FCFA {{ number_format($repartition['reste'], 2, ',', ' ') }} FCFA
Diagramme de progression par Exercice
@endsection @push('scripts') @endpush