@extends('layouts.master') @section('title', 'Impact sur les dotations budgetaire') @section('content')
| Années | Date début | Date fin | Dotation allouée (A) | Prises en charge sur le budget (B) | Disponible (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['alloue'], 0, ',', ' ') }} | {{ number_format($row['pec'], 0, ',', ' ') }} | {{ number_format($row['disponible'], 0, ',', ' ') }} | {{ number_format($row['taux'], 2, ',', ' ') }}% |
| Aucune donnée disponible | ||||||
| Total | {{ number_format($totalAlloue, 0, ',', ' ') }} | {{ number_format($totalPEC, 0, ',', ' ') }} | {{ number_format($totalDisponible, 0, ',', ' ') }} | {{ number_format($totalTaux, 2, ',', ' ') }}% | ||