@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

@php $nb=0; $old_date_naissance="";$style=""; @endphp @foreach ($allocataires as $allocataire) @php if($allocataire->date_naissance!=$old_date_naissance) { $nb++; $style=($nb%2)?"background-color:lightgrey;":""; } $old_date_naissance=$allocataire->date_naissance; @endphp @endforeach
Id Dossier
Famille
Nom Date de naissance Village District Statut
{!! $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 !!}
@endsection @section('scripts') @endsection