@section('title', 'Reports')
@section('top-menu-items')
| Transaction Date | Order # | Wp Order Id | Company | Contact Name | Product | Quantity | Value | Discount | Fee | Subtotal | Taxes | Total |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ $row['transaction_date'] }} | {{ $row['id'] }} | {{ $row['wp_orderId']}} | {{ $row['company'] }} | {{ $row['contact_name'] }} | {{ $row['product'] }} | {{ $row['quantity'] }} | {{ $row['value'] }} | {{ $row['discount'] }} | {{ $row['fees'] }} | {{ $row['subtotal'] }} | {{ $row['taxes'] }} | {{ $row['total'] }} |
| Total: | {{ number_format($report['totals']['value'] ?? 0, 2) }} | {{ number_format($report['totals']['discount'] ?? 0, 2) }} | {{ number_format($report['totals']['fee'] ?? 0, 2) }} | {{ number_format($report['totals']['subtotal'] ?? 0, 2) }} | {{ number_format($report['totals']['taxes'] ?? 0, 2) }} | {{ number_format($report['totals']['total'] ?? 0, 2) }} | ||||||