@extends('layouts.main_without_top_button') @section('title') Inventories Managements @stop @section('navigation') @stop @section('contentinner') {{--*/ $inventory_value = 0 /*--}} @foreach($items as $key => $value) @if($value->quantity>0) {{--/* $inventory_value += ($value->quantity) /*--}} @endif @endforeach
S/N Item/Part Type Unit Received Issued Stock Balance Unit Cost Amount Action
{{$key+1}} {{$value->name}} {{$value->item_group}} {{$value->units}} {{$value->quantity}} {{$value->quantityUsed}} {{$value->quantity-$value->quantityUsed}} {{number_format($value->average_price,2)}} {{number_format(($value->quantity-$value->quantityUsed)*$value->average_price,2)}}
{{number_format($inventory_value,2)}}
{{--