@extends('backend.layouts.master') @section('section-title', 'Report') @section('page-title', 'Item Sale Report') @push('css') @endpush @section('content')
| SL. | Date | Invoice No | Category | Product | Quantity | Unit Price | Discount | Total |
|---|---|---|---|---|---|---|---|---|
| {{ $key + 1 }} | {{ date('m-d-Y', strtotime($item->invoice->date)) }} | {{ $item->invoice->invoice_no }} | {{ $item->product->category->name }} | {{ $item->product->name }} | {{ $qty }} | {{ $item->rate }} | {{ number_format($item->product_discount, 2) }} | {{ number_format($item->subtotal, 2) }} |
| No Data Found | ||||||||
| Total: | {{ $total_qty }} pcs | {{ number_format($total_discount, 2) }} {{ empty(get_setting('com_currency')) ?: get_setting('com_currency') }} | {{ number_format($total_amount, 2) }} {{ empty(get_setting('com_currency')) ?: get_setting('com_currency') }} | |||||