@extends('layouts.app') @section('title') {{'Stock Summary'}} @endsection @section('content')
| S.N. | ID | Item Name | Unit | Opening Qty | Inward | Outward | Stock Qty |
|---|---|---|---|---|---|---|---|
| {{$i}} | {{$row->id}} | {{$row->product_name}} | {{$row->pack_type}} | {{ number_format($Opening,2)}} | {{ number_format($Inward,2)}} | {{ number_format($Outward,2)}} | {{ number_format($Closing,2)}} |
| Total Taka = | {{ number_format($TotalClosingOpeningTK,2) }} | {{ number_format($TotalInwardDpTK,2) }} | {{ number_format($TotalOutwardDpTK,2) }} | {{ number_format($TotalClosingDpTK,2) }} | |||