@extends('layouts.layout-horizontal') @section('title', 'Purchase Report - Product Wise (All Companies)') @section('content')
| Invoice Date | Bill No | Supplier Name | Product | Company | Quantity | Rate | Tax | Total |
|---|---|---|---|---|---|---|---|---|
| {{ \Carbon\Carbon::parse($item->invoice_date)->format('d-M-Y') }} | {{ $item->bill_no }} | {{ $item->supplier_name }} | {{ $item->product_name }} | {{ $item->company_name }} | {{ indian_number($item->qty, 2) }} | {{ indian_number($item->rate, 2) }} | {{ indian_number($item->tax, 2) }} | {{ indian_number($item->total, 2) }} |
| Totals: | {{ indian_number($items->sum('tax'), 2) }} | {{ indian_number($items->sum('total'), 2) }} | ||||||