@extends('layouts.dash') @section('title') Allocataires @stop @section('title_card') Allocataires Filet Social @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','select_filtre') !!} {!! html()->select('select_filtre', ["O"=>"Droits ouverts et acceptés", "R"=>"Droits ouverts et refusés", "F"=>"Droits fermés", "A"=>"Droits ouverts ou programmés"], isset($categorie)?$categorie:"") ->attributes(['class' => 'form-control','id' => 'select_filtre']) !!}
@foreach ($allocataires as $allocataire) @endforeach
Id Dossier
Famille
CPSWF Nom Village Naissance Prés/Abs Age Banque/ModePmt Conjoint NbPersonnes Ressources QF Droits Observations Motif Refus Motif Fermeture Montant Statut Mise à jour
{!! $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->getSituationWF() !!} {!! $allocataire->Age !!} @if($allocataire->mode_versement=="NUM") NUMERAIRE @endif @if($allocataire->mode_versement=="VIR") {!! $allocataire->NomBanque !!} @endif @if(!$allocataire->mode_versement) AUCUN @endif {!! $allocataire->ConjointNomComplet !!} {!! $allocataire->FamilleNbPersonnes !!} {!! $allocataire->FamilleMontantRessources !!} {!! $allocataire->QF !!} {!! $allocataire->getInfoDroit("FSO") !!} {!! $allocataire->getObsDroit("FSO") !!} {!! $allocataire->getMotifRefus("FSO",true,isset($categorie)?($categorie!="F"):true) !!} {!! $allocataire->getMotifFinDroit("FSO",isset($categorie)?($categorie!="F"):true) !!} {!! $allocataire->CalculMontantFSO !!} {!! $allocataire->statut !!} {!! $allocataire->UpdatedAt !!}
@endsection @section('scripts') @include("forms.scripts_datatable_btn") @endsection