@extends('layouts.dash') @section('title') Allocataires @stop @section('title_card') Allocataires CSR @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']) !!}
{!! html()->label('Catégorie','filtre_categorie') !!} {!! html()->select('filtre_categorie', ["O"=>"Droits ouverts ou programmés","F"=>"Droits fermés","R"=>"Droits refusés (avec motif)"], isset($categorie)?$categorie:"") ->attributes(['class' => 'form-control','id' => 'filtre_categorie']) !!}
@foreach ($allocataires as $allocataire) @endforeach
Id Dossier
Famille
CPSWF Nom Naissance Prés/Abs Droits Banque/ModePmt Conjoint Conjoint Naissance Conjoint
Ressources
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() !!} {!! $allocataire->getDroitsOuvertureBadge($type_aide,"",true) !!} @if($allocataire->mode_versement=="NUM") NUMERAIRE @endif @if($allocataire->mode_versement=="VIR") {!! $allocataire->NomBanque !!} @endif @if(!$allocataire->mode_versement) AUCUN @endif {!! $allocataire->ConjointNomComplet !!} {!! $allocataire->ConjointDateNaissance !!} {!! $allocataire->MontantRessourcesConjoint !!} {!! $allocataire->QF !!} {!! $allocataire->statut !!} {!! $allocataire->UpdatedAt !!}
@endsection @section('scripts') @include("forms.scripts_datatable_btn") @include("aides.scripts_aides_aae_csr_apa") @endsection