@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

{{ $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']) !!}
@foreach ($allocataires as $allocataire) @endforeach
Id Dossier
Famille
CPSWF Nom Naissance Prés/Abs Banque/ModePmt Score de Fragilite Taux de
Handicap
QF Statut Mise à jour
{!! $allocataire->IdPAD !!} @if($allocataire->controle) CTL @endif @if($allocataire->id_famille) {!! $allocataire->IdPADFamille !!} @else Aucun @endif {!! $allocataire->IdCPSWFPAD !!} {!! $allocataire->nom_complet2 !!} @if ($allocataire->statut_dossier!="ACT") Inactif @endif {!! $allocataire->date_naissance !!} {!! $allocataire->getSituationWF() !!} @if($allocataire->mode_versement=="NUM") NUMERAIRE @endif @if($allocataire->mode_versement=="VIR") {!! $allocataire->NomBanque !!} @endif @if(!$allocataire->mode_versement) AUCUN @endif {!! $allocataire->getLastEvaluationValue($type_aide,"MED","SCORE_FRAGILITE") !!} {!! $allocataire->getLastEvaluationValue($type_aide,"MED","TAUX_HANDICAP") !!} {!! $allocataire->QF !!} {!! $allocataire->statut !!} {!! $allocataire->UpdatedAt !!}
@endsection @section('scripts') @include("forms.scripts_datatable_btn") @include("aides.scripts_aides") @endsection