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

Dotations Budgetaire

@foreach($dotations as $dotation) @endforeach
Exercice Debut Fin Alloué Prise en charge sur le budget Disponible Taux d'execution Statut
{{ $dotation->exercice->annee }} {{ $dotation->date_debut->format('d/m/Y') }} {{ $dotation->date_fin->format('d/m/Y') }} {{ number_format($dotation->montant_alloue, 2, ',', ' ') }} FCFA {{ number_format($dotation->montant_utilise, 2, ',', ' ') }} FCFA {{ number_format($dotation->montant_restant, 2, ',', ' ') }} FCFA
{{ round($dotation->taux_utilisation, 1) }}%
{{ ucfirst($dotation->statut) }} @if($dotation->statut === 'actif' && $dotation->montant_utilise == 0)
@csrf @method('DELETE')
@endif
@endsection @push('scripts') @endpush @push('styles') @endpush