@extends('layouts.master') @section('content')
| # | Description | Exercice | Action Budget | Statut | Budget consommé | Actions | ||||
|---|---|---|---|---|---|---|---|---|---|---|
| {{ $budget->id_budget_carburant }} |
{{ $budget->desc_detail_carburant }}
{{ $budget->code_budget }} @if($budget->status_budget == 0) Inactif @endif |
@if($budget->action_year) {{ $budget->action_year }} @else - @endif |
@if($budget->nom_action)
{{ $budget->nom_action }}
@if($budget->code_budget)
@else
-
@endif
{{ $budget->code_budget }} @endif |
@if($budget->status_budget == 1) Actif @elseif($budget->status_budget == 0) Inactif @else En attente @endif |
@php
$nombreBons = $budget->nombre_bons ?? 0;
$totalMontant = $budget->total_montant_bons ?? 0;
@endphp
@if($nombreBons > 0)
{{ number_format($totalMontant, 0, ',', ' ') }} BIF
@else
0
@endif
|
@if($nombreBons > 0) {{ $nombreBons }} bon(s) associé(s) @endif | ||||
Aucun budget carburant trouvéCommencez par créer un nouveau budget carburant. |
||||||||||