@extends('layouts.app') @section('content')
Tous les Tiers
@csrf
@if(count($tiers)>0) @foreach ($tiers as $trs) @endforeach @else @endif
Caisse Folio Type tiers Nom et prénoms 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 }} {{ $trs->type_tiers }} {{ $trs->nom_tiers.' '.$trs->prenom_tiers }} {{ mb_strtoupper($trs->adresse, 'UTF-8') }} {{ $trs->phone }}
La liste est vide
@if(count($tiers)>0) @endif
@endsection @section('script') @endsection