@extends('printlayout') @section('content')
| {{ __('sitelabel.Product') }} | {{ __('sitelabel.OpeningBalance') }} | {{ __('sitelabel.Inword') }} | {{ __('sitelabel.TransferIn') }} | {{ __('sitelabel.Outword') }} | {{ __('sitelabel.TransferOut') }} | {{ __('sitelabel.CurrentStock') }} |
|---|---|---|---|---|---|---|
| {{ $product['name'] }} | {{ rtrim(rtrim(number_format($product['opening_balance'], 2), '0'), '.') }} | {{ rtrim(rtrim(number_format($product['inword'], 2), '0'), '.') }} | {{ rtrim(rtrim(number_format($product['transfer_in'], 2), '0'), '.') }} | {{ rtrim(rtrim(number_format($product['outword'], 2), '0'), '.') }} | {{ rtrim(rtrim(number_format($product['transfer_out'], 2), '0'), '.') }} | {{ rtrim(rtrim(number_format($product['current_stock'], 2), '0'), '.') }} |