@extends('admin.layout.master') @section('content')
Prestation(s) trouvée(s)
{{$nbre_prestations}}
@if ($errors->has('dateDebut'))
{{ $errors->first('dateDebut') }}
@endif @if ($errors->has('dateFin'))
{{ $errors->first('dateFin') }}
@endif {{ Form::open(['route' => 'admin.activiteSearch', 'method' => 'GET', 'id' => 'form_statistique']) }}
{{ Form::select('idPolice', $polices, old('idPolice'), ['class' => 'js-select2 form-control', 'id' => 'idPolice']) }}
{{ Form::select('idCollege', $colleges, old('idCollege'), ['class' => 'js-select2 form-control', 'id' => 'idCollege']) }}
{{ Form::date('dateDebut', old('dateDebut'), ['class' => 'form-control datepicker', 'id' => 'dateDebut', 'placeholder' => '< Date de Debut']) }} @if ($errors->has('dateDebut'))
{{ $errors->first('dateDebut') }}
@endif
{{ Form::date('dateFin', old('dateFin'), ['class' => 'form-control datepicker', 'id' => 'dateFin', 'placeholder' => '< Date de Fin']) }} @if ($errors->has('dateFin'))
{{ $errors->first('dateFin') }}
@endif
{{ Form::close() }}
@if(isset($prestationQuotidiennesByDate)) @foreach ($prestationQuotidiennesByDate as $prestationQuotidienne) @endforeach
DATE PRESTATION PRESTATAIRE POLICE BENEFICIAIRE ACTE % BASE TM REMBOURSE
{{ \Carbon\Carbon::parse($prestationQuotidienne->dateSysteme)->format('d/m/Y ') }}-{{ \Carbon\Carbon::parse($prestationQuotidienne->heurSyteme)->format('H:i') }} {{ substr($prestationQuotidienne->prestataire, 0, 40) }} {{ substr($prestationQuotidienne->Police, 0, 30) }} {{ substr($prestationQuotidienne->beneficiaire, 0, 35) }}
{{$prestationQuotidienne->CodeActe}}
{{ (100 - $prestationQuotidienne->tm) }} {{ number_format($prestationQuotidienne->fraisReel, 0, '', ' ') }} {{ number_format($prestationQuotidienne->montantTm, 0, '', ' ') }} {{ number_format($prestationQuotidienne->montantArembourser, 0, '', ' ') }}
@if ($prestationQuotidiennesByDate->count() > 0)
{{ count($prestationQuotidiennesByDate) }} Souscripteur(s) affiché(s) sur {{ $prestationQuotidiennesByDate->total() }}
@else
Aucun élément trouvé.
@endif @endif
@endsection