@extends('layouts.dash') @section('title') Allocataires @stop @section('title_card') Allocataires @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_datecommission_'.strtolower($type_aide)))->open() }}

{{ $title }}

{!! html()->label('Ile','select_ile') !!} {!! html()->select('select_ile',App\Models\MyApp::ILES,isset($ile)?$ile:"")->placeholder('Toutes')->attributes(['class' => 'form-control','id' => 'select_ile']) !!}
{!! html()->label( "Date de la commission",'date_commission') !!}
{!! html()->text('date_commission', null)->placeholder('')->attributes(['class' => 'form-control','style' => 'text-align:center']) !!}
@if($type_aide=="AGD") @endif @if($type_aide=="APH") @endif @foreach ($allocataires as $allocataire) @php $date_commission=$allocataire->getDateLastCommission($type_aide,null); if($date_commission) $date_commission=date('d/m/Y', strtotime(str_replace('/', '-', $date_commission))); @endphp @if($type_aide=="AGD") @endif @if($type_aide=="APH") @endif @endforeach
Sel. Id Commission en attente CPSWF Nom Village Date de naissance ConjointConjoint
Ressources
S.Fragilite GIR
(Med)
GIR
(Dis)
QFScore de Fragilite Tx Handicap
(Med)
QFStatut Conj. NbEnfants
Soc
Mise à jour Date Demande Observations
@if(!$date_commission) @endif {!! $allocataire->IdPAD !!} @if($allocataire->controle) CTL @endif {!! $date_commission !!} {!! $allocataire->IdCPSWFPAD !!} {!! $allocataire->nom_complet2 !!} {!! $allocataire->VillageFullName2 !!} {!! $allocataire->date_naissance !!} {!! $allocataire->ConjointNomComplet !!}{!! $allocataire->MontantRessourcesConjoint !!} {!! $allocataire->ScoreLast !!} {!! $allocataire->getLastEvaluationValue($type_aide,"MED","GIR") !!} {!! $allocataire->getLastEvaluationValue($type_aide,"DIS","GIR") !!} {!! $allocataire->QF !!}{!! $allocataire->ScoreLast !!} {!! $allocataire->getLastEvaluationValue($type_aide,"MED","TAUX_HANDICAP") !!} {!! $allocataire->QF !!}{!! $allocataire->StatutConjoint !!} {!! $allocataire->NbEnfantsAAE !!} {!! $allocataire->UpdatedAt !!} {!! $allocataire->getDateDemande($type_aide) !!} {!! $allocataire->getObsDroit($type_aide) !!}
{{ html()->form()->close() }} @endsection @section('scripts') @endsection