@extends('layouts.app') @section('content')
Rango: {{ \Carbon\Carbon::parse($startDate)->format('d/m/Y') }} - {{ \Carbon\Carbon::parse($endDate)->format('d/m/Y') }}
| Producto | Cant. | Total |
|---|---|---|
| {{ $sale->product_name }} | {{ number_format($sale->total_quantity, 0) }} | RD$ {{ number_format($sale->total_revenue, 2) }} |
| No hay ventas. | ||
Av. Principal #123, Plaza Central
Tel: (809) 555-0199 | RNC: 123-45678-9
| Desde: {{ \Carbon\Carbon::parse($startDate)->format('d/m/Y') }} |
| Hasta: {{ \Carbon\Carbon::parse($endDate)->format('d/m/Y') }} |
| Fecha Impresión: {{ now()->format('d/m/Y H:i') }} |
| Generado por: {{ auth()->user()->name }} |
| Cant | Descripción | Total |
|---|---|---|
| {{ number_format($sale->total_quantity, 0) }} | {{ $sale->product_name }} | {{ number_format($sale->total_revenue, 0) }} |
TOTAL: RD$ {{ number_format($grandTotal, 2) }}