@extends('layouts.app') @section('content')
registre des clentèles
@csrf
@if($caisses->count() > 1)
@endif
@if(count($tiers)>0) @foreach ($tiers as $trs) @endforeach @else @endif
Guichet Folio Date d'adhésion Type tiers Nom et prénoms CIN Adresse Téléphone
@php $photo = !empty($trs->photo) ? App\Lib\Image::get(env('IMG_TIERS').DIRECTORY_SEPARATOR.$trs->photo) : ""; $signature = !empty($trs->signature) ? App\Lib\Image::get(env('IMG_SIGNATURE').DIRECTORY_SEPARATOR.$trs->signature) : ""; @endphp img {{ $trs->caisse_id }} {{ $trs->id_tiers }} {{ (new DateTime($trs->date_entree))->format(Config('myahs.date_format')) }} {{ $trs->type_tiers == 'GP' ? 'PM' : $trs->type_tiers }} {{ $trs->nom_tiers.' '.$trs->prenom_tiers }} {{ $trs->cin }} {{ mb_strtoupper($trs->adresse, 'UTF-8') }} {{ $trs->phone }}
La liste est vide
@if(count($tiers)>0) @endif
@endsection @section('script') @endsection