@extends('admin.admin_master') @section('admin')
| # | Product Name | Quantity | Net Unit Cost | Discount | Subtotal |
|---|---|---|---|---|---|
| {{ $key + 1 }} | {{ $item->product->name }} | {{ $item->quantity }} | {{ number_format($item->net_unit_cost,2) }} | {{ number_format($item->discount,2) }} | {{ number_format($item->subtotal,2) }} |