@extends('layouts.app') @section('title', $client->nom) @section('breadcrumb', 'Clients / '.$client->nom) @section('content')

Informations

@php $rows = ['Groupe'=>$client->groupe?->label,'Matricule'=>$client->matricule_fiscale,'Tél'=>$client->tel,'Email'=>$client->email,'Adresse'=>$client->adresse,'Remise'=>$client->remise_accordee.'%','Plafond'=>number_format($client->plafond_credit,3,',',' ').' TND']; @endphp @foreach($rows as $label => $val) @if($val)
{{ $label }} {{ $val }}
@endif @endforeach
Solde {{ number_format($solde, 3, ',', ' ') }} TND

Historique des documents

Voir tout
@forelse($client->venteDocuments as $doc) @empty @endforelse
TypeDateTotal TTCStatut
{{ $doc->numero }} {{ $doc->type_libelle }} {{ $doc->date->format('d/m/Y') }} {{ number_format($doc->total_ttc, 3, ',', ' ') }} {{ $doc->statut }}
Aucun document
@endsection