@extends('layouts.dash') @section('title') Besoins Humains @stop @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 @if (!Session::has('raz_cdl_valide'))

Besoins Humains par allocataire

@if($user->HasRole("ADMINISTRATEUR") || $user->can('RAZ_CDL')) @if(count($allocataires) >0) @endif @endif

Par Allocataires Par Besoin

@foreach ($allocataires as $allocataire) @endforeach
Id Dossier
Famille
Nom Date de naissance Village District Besoin
{!! $allocataire->IdPAD !!} @if($allocataire->id_famille) {!! $allocataire->IdPADFamille !!} @else Aucun @endif {!! $allocataire->nom_complet2 !!} {!! $allocataire->date_naissance !!} {!! $allocataire->VillageFullName2 !!} {!! $allocataire->DistrictNom !!} {!! $allocataire->getListeBesoinsHumain(false) !!}
@endif @endsection @section('styles') @stop @section('scripts') @include("forms.scripts_datatable_btn") @endsection