@extends('admin.layout.master') @section('content')

Réseau de Soins

Réseau de Soins

{{ Form::open(['route' => 'admin.reseau.index', 'method' => 'GET', "onsubmit" => "showOverlay()", 'id' => 'form_statistique']) }}
{{ Form::text('recherche', old('recherche'), ['class' => 'form-control input-chic', 'placeholder' => 'Rechercher un prestataire...', 'id' => 'recherche']) }}
{{ Form::select('idCollege', $colleges, old('idCollege'), ['class' => 'form-control select2 js-select2-premium', 'id' => 'idCollege']) }}
{{ Form::select('codeLocalite', $localites, old('codeLocalite'), ['class' => 'form-control select2 js-select2-premium', 'id' => 'codeLocalite']) }}
{{ Form::select('codeTypePrestataire', $typePrestataires, old('codeTypePrestataire'), ['class' => 'form-control select2 js-select2-premium', 'id' => 'codeTypePrestataire']) }}
{{ form::close()}}
@if(isset($reseaux))
{{ $nbre_prestations }} Prestataire(s) trouvé(s)
@forelse ( $reseaux as $reseau ) @empty @endforelse
LOCALITE POLICE COLLEGE TYPE PRESTATAIRE PRESTATAIRE ADRESSE GEOGRAPHIQUE TÉLÉPHONE FIXE TÉLÉPHONE PORTABLE
{{ Str::limit($reseau->localite, 35) }} {{ Str::limit($reseau->Police, 40) }} {{ Str::limit($reseau->libelleCollege, 35) }} {{ Str::limit($reseau->typeprestataire, 35) }} {{ Str::limit($reseau->Prestataire, 35) }} {{ Str::limit($reseau->situation, 35) }} {{ Str::limit($reseau->TelephoneFixe, 35) ?: '-' }} {{ Str::limit($reseau->telephonePortable, 35) ?: '-' }}
Aun prestataire trouvé.
Total : {{ count($reseaux) }} Prestation(s) listée(s)
@if (($reseaux->count() != 0))
{!! $reseaux->appends(Request::except(array('page')))->onEachSide(-1)->links() !!}
@endif
@endif
@section('scripts') @endsection @endsection