@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 détaillés par allocataire

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

Par Allocataires Par Besoin

@foreach ($allocataire_besoins as $allocataire_besoin) @php $allocataire=App\Models\Allocataire::find($allocataire_besoin->id_allocataire); @endphp @endforeach
Id Dossier
Famille
Nom Date de naissance Village District Besoin Aidant proposé Inscription CDL Contrat CDL Rythme Obervations
{!! $allocataire->IdPAD !!} @if($allocataire->id_famille) {!! $allocataire->IdPADFamille !!} @else Aucun @endif {!! $allocataire->nom_complet2 !!} {!! $allocataire->date_naissance !!} {!! $allocataire->VillageFullName2 !!} {!! $allocataire->DistrictNom !!} {!! $allocataire_besoin->BesoinNom !!} {!! $allocataire_besoin->AidantNomComplet !!} {!! $allocataire_besoin->cdl?"OUI":"NON" !!} {!! $allocataire_besoin->contrat?"OUI":"NON" !!} {!! $allocataire_besoin->RythmeNom !!} {!! $allocataire_besoin->observations !!}
@endif @endsection @section('styles') @stop @section('scripts') @include("forms.scripts_datatable_btn") @endsection