@extends('layouts.app') @section('content')
| {{ _lang('Product Name') }} | {{ $item->item_name }} |
| {{ _lang('Supplier') }} | {{ $item->product->supplier->supplier_name }} |
| {{ _lang('Product Cost') }} | {{ decimalPlace($item->product->product_cost, currency()) }} |
| {{ _lang('Product Price') }} | {{ decimalPlace($item->product->product_price, currency()) }} |
| {{ _lang('Product Unit') }} | {{ $item->product->product_unit }} |
| {{ _lang('Availabel Quantity') }} | {{ $item->product_stock->quantity.' '.$item->product->product_unit }} |
| {{ _lang('Tax Method') }} | {{ ucwords($item->product->tax_method) }} |
| {{ _lang('Tax') }} | {{ isset($item->product->tax) ? $item->product->tax->tax_name : '' }} |
| {{ _lang('Description') }} | {{ $item->product->description }} |