@extends('layouts/inventory_layout') @section('title', '| ' . $moduleTitle) @section('content')
| Sl. | Barcode | Brand | Product Name | Model | Sale Price | Total Quantity | Cost Price | Total Price |
|---|---|---|---|---|---|---|---|---|
| {{$hasCategories[$key]}} | ||||||||
| {{ ++$serial }} | {{ $invProduct->barcode }} | {{ $invProduct->inv_brand->name }} | {{ $invProduct->name }} | {{ $invProduct->inv_model->name }} | {{ number_format($invProduct->sales_price,2) }} | {{ $invProduct->quantity}} | {{ number_format($invProduct->cost_price,2)}} | {{ number_format($invProduct->total_price,2)}} |
| Total | {{ $totalQty}} | {{ number_format($totalCostPrice,2)}} | {{ number_format($totalTotalPrice,2)}} | |||||