@extends('layouts.dash') @section('title') Réductions de mandat @stop @section('title_card',"") @section('content') @if (Session::has('message'))
{!! Session::get('message') !!}
@endif @if ($errors) @foreach ($errors->all() as $error)
{!! $error !!}
@endforeach @endif @if (Session::has('success'))
{!! \Session::get('success') !!}
@endif

Liste des Réductions de mandat à transmettre

@foreach ($reductions_mandats as $reduction_mandat) @endforeach
Id Allocataire Versement Date Versement Aide Nom Mandat Saisie Montant Observations
{!! $reduction_mandat->IdPad !!} {!! $reduction_mandat->AllocataireIdPAD !!} @if(($user->hasRole("ADMINISTRATEUR") || $user->can("VERS_VISU"))) @endif {{ $reduction_mandat->VersementNumimpPAD }} @if(($user->hasRole("ADMINISTRATEUR") || $user->can("VERS_VISU"))) @endif {!! $reduction_mandat->VersementDate !!} {!! $reduction_mandat->VersementTypeAide !!} {!! $reduction_mandat->AllocataireNom !!} {!! $reduction_mandat->mandat !!} {!! $reduction_mandat->Date !!} {!! number_format($reduction_mandat->VersementMontant,0,","," ") !!} {!! $reduction_mandat->observations !!}
@endsection @section('scripts0') @include('forms.scripts_datatable_btn') @endsection