@extends('pdf') @section('content-area')

@lang('All product list')

@foreach ($products as $key => $product) @endforeach
@lang('#') @lang('Category') @lang('Code') @lang('Name') @lang('Item Model') @lang('Stock Qty') @lang('Avg. Puchase Price') @lang('Regular Price')
{{ ++$key }} {{ $product['proSubCategory']['name'] }}
[{{ config('config.proSubCatPrefix') . '-' . $product['proSubCategory']['code'] }}]
{{ config('config.productPrefix') . '-' . $product['code'] }} {{ $product['name'] }} {{ $product['model'] }} {{ $product['inventory_count'] > 0 ? $product['inventory_count'] : 0 }} {{ $product['productUnit']['code'] }} @currency($product['purchase_price']) @currency($product['regular_price'])
@endsection