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

Les lignes de Budget - {{$year}}

Voir les details Budget
Imprimer pdf

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 Direction Action Code Budget Tot Budget Budget revisé Budget consommé Budget Restant Exercice
{{++$key}} @if($bu->direction_act==0) POPI @else {{$bu->nom_direction}} @endif {{$bu->nom_action}} {{$bu->code_budget}} {{number_format($bu->montant_action,0,',',' ')}} {{number_format($bu->montant_revise,0,',',' ')}} {{number_format($bu->montant_consomme,0,',',' ')}} {{number_format($bu->montant_action-$bu->montant_consomme,0,',',' ')}} {{$bu->exercice}} @if(Auth()->user()->roles()->whereIn('role_id', [1])->exists())
@endif
@endsection @section('page-script') @stop