@extends('layouts.master') @section('title', 'Impact sur le Marche par Exercice') @section('content')
| Années | Date début | Date fin | Ordonnancement prévu (A) | Prises en charge (B) | Restes à ordonnancer (A-B) | Taux d'exécution (B/A) |
|---|---|---|---|---|---|---|
| {{ $row['annee'] }} | {{ \Carbon\Carbon::parse($row['date_debut'])->format('d/m/Y') }} | {{ \Carbon\Carbon::parse($row['date_fin'])->format('d/m/Y') }} | {{ number_format($row['prevu'], 0, ',', ' ') }} | {{ number_format($row['pec'], 0, ',', ' ') }} | {{ number_format($row['reste'], 0, ',', ' ') }} | {{ number_format($row['taux'], 2, ',', ' ') }}% |
| Aucune donnée disponible | ||||||
| Total | {{ number_format($totalPrevu, 0, ',', ' ') }} | {{ number_format($totalPEC, 0, ',', ' ') }} | {{ number_format($totalReste, 0, ',', ' ') }} | {{ number_format($totalTaux, 2, ',', ' ') }}% | ||