@extends('layouts.master') @section('title', 'Détails de l\'Exercice') @section('content')
| Année: | {{ $exercice->annee }} |
|---|---|
| Début: | {{ $exercice->date_debut->format('d/m/Y') }} |
| Fin: | {{ $exercice->date_fin->format('d/m/Y') }} |
| Statut: | @if($exercice->est_actif) Actif @else Inactif @endif |
| Montant alloué: | {{ number_format($exercice->montant_alloue, 2, ',', ' ') }} FCFA |
|---|---|
| Montant utilisé: | {{ number_format($exercice->montant_utilise, 2, ',', ' ') }} FCFA |
| Montant restant: | {{ number_format($exercice->montant_restant, 2, ',', ' ') }} FCFA |
| Progression: |
|