@extends('layouts.app') @section('content')
| Producto | Cantidad | Valor |
|---|---|---|
| {{ $product->name }} | {{ number_format($product->total_quantity) }} | ${{ number_format($product->total_value, 2) }} |
| Cliente | Facturas | Valor |
|---|---|---|
| {{ $client->business_name }} | {{ $client->invoices_count }} | ${{ number_format($client->total_value, 2) }} |