@extends('layouts.dash') @section('title') Cotisations @stop @section('title_card',"") @section('subtitle_card',"") @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

Cotisations encaissées

{{ html()->form('POST', url('cotisation_encaissees_annee'))->open() }}
{!! html()->label( 'Exercice','annes') !!} {!! html()->select('exercice',$exercices,$exercice)->placeholder('A définir') ->attributes(['id' => 'exercice_id','class' => 'form-control selectpicker','data-width' => "100%",'style' => 'font-weight:bold;background:whitesmoke']) !!}
{!! html()->label( ' ou Encaissements du  ','mois_debut') !!}
{!! html()->text('mois_debut',isset($mois_debut)?$mois_debut:null)->placeholder('Mois Début')->attributes(['size'=>'8', 'class' => 'form-control']) !!}
{!! html()->label( 'au','mois_fin')->attributes(['style'=>'padding:0px;']) !!}
{!! html()->text('mois_fin',isset($mois_fin)?$mois_fin:null)->placeholder('Mois Fin')->attributes(['size'=>'8', 'class' => 'form-control']) !!}
{!! html()->label( 'Compte','encais_compte') !!} {!! html()->select('encais_compte',App\Models\MyApp::COMPTES_ENCAISSEMENT,isset($encais_compte)?$encais_compte:'') ->placeholder('A définir') ->attributes(['id' => 'encais_compte','class' => 'form-control selectpicker','data-width' => "100%",'style' => 'font-weight:bold;background:whitesmoke']) !!}
{!! html()->button('Filtrer')->value('Filtrer')->type('submit')->attributes(['class' => 'btn btn-primary']) !!}
{!! $libelle_filtrage !!}
{{ html()->closeModelForm() }}
@foreach ($cotisations as $cotisation) @endforeach
Ex Employeur Date Pmt CLR CCPF Débit Crédit Mois NbMois BdPu BdPr DateEnc Compte Comptabilité
@if($user->can("COT_VISU") || $user->HasRole("ADMINISTRATEUR")) @endif {!! $cotisation->id !!} @if($user->can("COT_VISU") || $user->HasRole("ADMINISTRATEUR")) @endif {!! $cotisation->exercice !!} {!! $cotisation->NomEmployeur !!} {!! $cotisation->date !!} {!! $cotisation->typepmt !!} {!! $cotisation->clr !!} {!! $cotisation->ccpf !!} {!! $cotisation->debit !!} {!! $cotisation->credit !!} {!! $cotisation->mois !!} {!! $cotisation->nbmois !!} {!! $cotisation->bdx !!} {!! $cotisation->bdx_prive !!} {!! $cotisation->encais_date !!} {!! $cotisation->encais_compte !!} @if($cotisation->transaction) {!! $cotisation->EcritureComptaInfo !!} @endif
TOTAL CLR : 
TOTAL CCPF : 
TOTAL DEBIT : 
TOTAL CREDIT : 
SOLDE : 
@endsection @section('scripts0') @endsection @section('scripts') @endsection