@extends('layouts.master') @section('content')

Les details de Budget - {{$year}}

Selectionner une année d'exercice :

@foreach($annees as $anne) {{$anne}} @endforeach
@if(Session::has('message'))

{{Session::get('message')}}

@endif
@foreach($budgets as $key=>$bu) @endforeach
No Action Principale Direction Action detail Imputation Tot Budget Budget revisé Budget consommé Budget Restant Exercice
{{++$key}} {{$bu->nom_action}} @if($bu->direction_act_detail==0) POPI @else {{$bu->nom_direction}} @endif {{$bu->nom_action_detail}} {{$bu->code_budget_detail}} {{number_format($bu->montant_action_detail,0,',',' ')}} {{number_format($bu->montant_detail_revise,0,',',' ')}} {{number_format($bu->montant_detail_consomme,0,',',' ')}} {{number_format($bu->montant_action_detail-$bu->montant_detail_consomme,0,',',' ')}} {{$bu->exercice_detail}} @if(Auth()->user()->roles()->whereIn('role_id', [1])->exists())
@endif
@endsection @section('page-script') @stop