@extends('layouts.app') @section('content') @if ($message= Session::get('success'))
@endif
Menus d'insertion et affichage des données
@if(count($programmation)>0)
Paiement
@foreach($programmation as $programmations) @endforeach
N° FNR Nom Montant Net ALL ou PTO Montant Assignation Action
{{$programmations->fnr}} {{$programmations->nom}} @if($programmations->montantlit==0 and $programmations->pto==0) {{$nombre_format_francais = number_format($programmations->pnt, 2, ',', ' ');}} @endif @if($programmations->montantlit!=0 or $programmations->pto!=0) {{$nombre_format_francais = number_format($programmations->montantlit, 2, ',', ' ');}} @endif @if($programmations->montantlit==0 and $programmations->pto==0) {{$nombre_format_francais = number_format($programmations->allocation, 2, ',', ' ');}} @endif @if($programmations->montantlit!=0 or $programmations->pto!=0) {{$nombre_format_francais = number_format($programmations->pto, 2, ',', ' ');}} @endif {{$programmations->pensiongenerale}} {{$programmations->assignation}} Valider
@endif @endsection