@extends('business::layouts.pdf.pdf_layout') @section('pdf_title')
| {{ __('SL') }}. | {{ __('Product') }} | {{ __('Cost') }} | {{ __('Qty') }} | {{ __('Sale') }} | {{ __('Stock Value') }} |
|---|---|---|---|---|---|
| {{ $loop->index + 1 }} | {{ $stock->productName }} | {{ currency_format($stock->productPurchasePrice, 'icon', 2, business_currency()) }} | {{ $stock->productStock }} | {{ currency_format($stock->productSalePrice, 'icon', 2, business_currency()) }} | {{ currency_format($stock->productSalePrice * $stock->productStock, 'icon', 2, business_currency()) }} |