@extends('admin.layout.master') @section('content')
{{ Form::open(['route' => 'admin.activiteSearch', 'method' => 'GET', 'id' => 'form_statistique', 'autocomplete' => 'off']) }}
{{ Form::select('idPolice', $polices, $idPolice ?? old('idPolice'), ['class' => 'select2 js-select2-premium', 'id' => 'idPolice']) }}
{{ Form::select('idCollege', $colleges, $idCollege ?? old('idCollege'), ['class' => 'select2 js-select2-premium', 'id' => 'idCollege']) }}
{{ Form::date('dateDebut', $dateDebut ?? (old('dateDebut') ?: date('Y-m-d')), ['class' => 'form-control input-chic']) }}
{{ Form::date('dateFin', $dateFin ?? (old('dateFin') ?: date('Y-m-d')), ['class' => 'form-control input-chic']) }}
{{ Form::close() }}
FLUX DES PRESTATIONS
{{ $prestationQuotidiennesByDate->total() }} RÉSULTATS
@forelse ($prestationQuotidiennesByDate as $pq) @php $typeReglement = $pq->tiersPayant > 0 ? 'Tiers Payant' : 'Remboursement'; $urlFichier = $pq->cheminFichier ? asset($pq->cheminFichier) : null; @endphp @empty @endforelse
Date Prestation Remboursement Mode de paiement Prestataire Police N° Assuré Bénéficiaire Acte TAUX % Base Remboursement Ticket M Montant Rembooursé Actions
{{ \Carbon\Carbon::parse($pq->dateSysteme)->format('d/m/Y') }}
{{ \Carbon\Carbon::parse($pq->heurSyteme)->format('H:i') }}
{{ $typeReglement }} @if($pq->tiersPayant == 0)
{{ $pq->codeModePaiementDemande }}
@else @endif
{{ Str::limit($pq->prestataire, 30) }}
{{ $pq->Police }}
@if($pq->tiersPayant == 0)
{{ $pq->telephonePortableAdherent ?? '—' }}
@else @endif
{{ $pq->beneficiaire }}
{{ $pq->CodeActe }} {{ (100 - $pq->tm) }} {{ number_format($pq->fraisReel, 0, '', ' ') }} {{ number_format($pq->montantTm, 0, '', ' ') }} {{ number_format($pq->montantArembourser, 0, '', ' ') }}
@if ($urlFichier) @else @endif

AUCUNE DONNÉE TROUVÉE

@if ($prestationQuotidiennesByDate->count() > 0)
{!! $prestationQuotidiennesByDate->appends(Request::except('page'))->onEachSide(1)->links() !!}
@endif
@endsection @section('scripts') @endsection