@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 {{ ($title)?$title:'' }}

{!! html()->label("Numéro d'imprimé : ",'num_imp') !!} {!! html()->select('num_imp')->options($liste_num_imp) ->value($num_imp) ->placeholder('Choisir une édition') ->attributes(['id' => 'num_imp','class' => 'form-control ']) !!}
@if($num_imp) @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 !!}
@endif
@endsection @section('scripts0') @include('forms.scripts_datatable_btn') @endsection