@extends('layouts.dash') @section('title') Doublons analyses @stop @section('content') @if (Session::has('success'))
{!! Session::get('success') !!}
@endif @if (Session::has('message'))
{!! Session::get('message') !!}
@endif

Besoins par allocataire

{!! html()->label('Contrôle','select_type') !!} {!! html()->select('select_type',$liste_controle,isset($type_controle)?$type_controle:"")->placeholder('Tous') ->attributes(['class' => 'form-control','id' => 'select_type']) !!}
@php $nb=0; $old_date_naissance="";$style=""; @endphp @foreach ($allocataires as $allocataire) @php @endphp @endforeach
Id Dossier
Famille
Nom Date de naissance Village District Statut Anomalies
{!! $allocataire->IdPAD !!} @if($allocataire->id_famille) {!! $allocataire->IdPADFamille !!} @else Aucun @endif {!! $allocataire->nom_complet2." ".$allocataire->double !!} {!! $allocataire->date_naissance !!} {!! $allocataire->VillageFullName2 !!} {!! $allocataire->DistrictNom !!} {!! $allocataire->statut_dossier !!} @if(isset($errors[$allocataire->id]))
    @foreach ($errors[$allocataire->id] as $error)
  • {!! $error !!}
  • @endforeach
@endif
@endsection @section('scripts') @endsection