@extends('layouts.app') @section('title', $page_title) @section('content')

{{ $sub_title }}

@if (!empty($product->image))
{{ $product->name }}
@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) @foreach($product->openingStockList as $value) @endforeach
{{__('file.Company')}} {{__('file.Product')}} {{__('file.Scale')}} {{__('file.Qty')}}
{{$value->warehouse->name}} {{$value->product->product_name}} {{$value->product->scale}} {{$value->product->qty}}
@endif
@endsection