@extends('layouts.dash') @section('title') Indus @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 Indus {{ ($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 ($indus as $indu) @endforeach
Allocataire Nom Date Versements Indus Statut Montant Observations
{!! $indu->IdPAD !!} {!! $indu->AllocataireIdPAD !!} {!! $indu->AllocataireNom !!} {!! $indu->Date !!} {!! $indu->getVersements() !!} {!! $indu->statut !!} {!! number_format($indu->montant,0,","," ") !!} {!! $indu->observations !!}
@endif
@endsection @section('scripts0') @include('forms.scripts_datatable_btn') @endsection