@extends('admin.layouts.app') @section('title', 'Stock List') @push('styles') @endpush @section('container')
| SL | Product Type | Product Name | Reference Name | Stock(Pcs) | Buying Price | Selling Price | Action |
|---|---|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $data->product->productCategory->name??'' }} | {{ $data->product->name??'' }} | {{ $data->product->reference_name??'' }} | {{ number_format($data->s_stock_in - $data->s_stock_out,2) }} | {{ number_format($data->buying_price,2) }} | {{ number_format($data->selling_price,2) }} | Details | Total Stock | {{ $totalSet1 }} |