@if (!empty($product->image))
@endif
{{__('file.Product Name')}} |
: |
{{ $product->product_name }} |
{{__('file.Product Code')}} |
: |
{{ $product->product_code }} |
{{__('file.Category')}} |
: |
{{ $product->category->category_name }} |
{{__('file.Stock Unit')}} |
: |
{{ $product->unit->unit_name }} |
{{__('file.Unit')}} |
: |
{{ $product->unit->unit_name.'('.$product->unit->unit_code.')' }} |
{{__('file.Purchase Price')}} |
: |
{{ $product->purchase_price }} |
{{__('file.Sale Price')}} |
: |
{{ $product->sale_price }} |
{{__('file.Alert Quantity')}} |
: |
{{ $product->alert_qty }} |
@if($product->openingStockList->count() > 0)
{{__('file.Company')}} |
{{__('file.Product')}} |
{{__('file.Scale')}} |
{{__('file.Qty')}} |
@foreach($product->openingStockList as $value)
{{$value->warehouse->name}} |
{{$value->product->product_name}} |
{{$value->product->scale}} |
{{$value->product->qty}} |
@endforeach
@endif