@extends('layouts.app') @section('title', 'Grand livre clients') @section('breadcrumb', 'États / Grand livre clients') @section('content')
| Client | CA Factures TTC | Avoirs TTC | Solde net |
|---|---|---|---|
| {{ $c->nom }} | {{ number_format($c->ca??0,3,',',' ') }} | {{ number_format($c->avoirs??0,3,',',' ') }} | {{ number_format($solde,3,',',' ') }} |
| Aucune donnée | |||
| TOTAL | {{ number_format($totCa,3,',',' ') }} | {{ number_format($totAvoirs,3,',',' ') }} | {{ number_format($totCa-$totAvoirs,3,',',' ') }} |