@foreach ($stocks as $stock)
| {{ ($stocks->currentPage() - 1) * $stocks->perPage() + $loop->iteration }} |
{{ $stock->productName }} |
{{ currency_format($stock->productPurchasePrice, currency : business_currency()) }} |
{{ $stock->productStock }}
|
{{ currency_format($stock->productSalePrice, currency : business_currency()) }} |
{{ currency_format($stock->productPurchasePrice * $stock->productStock, currency : business_currency()) }} |
@endforeach
| {{ __('Total Stock Value:') }} |
{{ currency_format($total_stock_value, currency : business_currency()) }} |