@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_refus_'.strtolower($type_aide)))->open() }}

{{ $title }}

{!! html()->label('Filtre','select_filtre') !!} {!! html()->select('select_filtre',$filtres,isset($filtre)?$filtre:"") ->placeholder('Tous')->attributes(['class' => 'form-control','id' => 'select_filtre']) !!}
{!! html()->label( 'Raison du Refus à appliquer','raison_fso') !!} {!! html()->select('raison_fso',$raisons_fso,null) ->placeholder('A définir') ->attributes(['id' => 'raison_fso','class' => 'form-control']) !!}
@if(count($t_lignes)>0)
dd
@endif
@foreach ($allocataires as $allocataire) @endforeach
Sel. Id Dossier
Famille
CPSWF Nom Date de naissance Age Conjoint NbPersonnes Ressources QF Refus Montant
{!! $allocataire->IdPAD !!} @if($allocataire->id_famille) {!! $allocataire->IdPADFamille !!} @else Aucun @endif {!! $allocataire->IdCPSWFPAD !!} {!! $allocataire->nom_complet2 !!} {!! $allocataire->date_naissance !!} {!! $allocataire->age !!} {!! $allocataire->FamilleConjointNomComplet !!} {!! $allocataire->FamilleNbPersonnes !!} {!! $allocataire->FamilleMontantRessources !!} {!! $allocataire->QF !!} {!! $allocataire->RaisonLibelle !!} {!! $allocataire->CalculMontantFSO !!}
{{ html()->form()->close() }} @endsection @section('scripts') @endsection