@extends('layouts.dash') @section('title') Allocataires @stop @section('title_card') @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 {{ html()->form('POST', url('/set_statut_'.strtolower($type_aide)))->attributes(['id'=>'form'])->open() }}

{{ $title }}

{!! html()->label('Ile','ile') !!} {!! html()->select('ile',App\Models\MyApp::ILES,isset($ile)?$ile:"")->placeholder('Toutes') ->attributes(['class' => 'form-control','id' => 'ile']) !!}
@if($type_aide=="AAE") @endif @if($type_aide=="FSO") @endif @foreach ($allocataires as $allocataire) @if($type_aide=="AAE") @endif @if($type_aide=="FSO") @endif @endforeach
Sel. Id Dossier
Famille
CPSWF Nom Village Date de naissance Age ConjointEnfants bénéficiaires NbEnfants
Tot/AideEnf.
Nb Personnes Ressources QFAides
@if($allocataire->controle) CTL @endif {!! $allocataire->IdPAD !!} @if($allocataire->id_famille) {!! $allocataire->IdPADFamille !!} @else Aucun @endif {!! $allocataire->IdCPSWFPAD !!} {!! $allocataire->nom_complet2 !!} @if ($allocataire->statut_dossier!="ACT") Inactif @endif {!! $allocataire->VillageNom !!} {!! $allocataire->date_naissance !!} {!! $allocataire->age !!} {!! $allocataire->FamilleConjointNomComplet !!}{!! $allocataire->getEnfantsListe() !!} {!! $allocataire->NbEnfants."/".$allocataire->NbEnfantsAAE !!}{!! $allocataire->FamilleNbPersonnes !!} {!! $allocataire->FamilleMontantRessources !!} {!! $allocataire->QF !!}{!! $allocataire->getDroitsListe() !!}
{{ html()->form()->close() }}
@endsection @section('scripts') @endsection