@extends('shared.admin') @section('content')

Inventory Report

All Inventory Report

@if($list != null && count($list) > 0) @php $i = 0; @endphp @foreach($list as $item) @php $i ++; @endphp @endforeach @endif
ID Ngày Mã Kho Tên Kho Mã hàng Tên Hàng Số lượng nhập Số lượng xuất Số lượng nhập trả Tồn Kho
{{ $i }} {{ $item['currentdate'] }} INV{{ $item['inventoryId'] }} {{ $item['inventoryName'] }} {{ $item['productName'] }} {{ $item['productTitle'] }} {{ $item['totalInventory'] }} {{ $item['totalOrder'] }} {{ $item['totalInventory'] - $item['totalOrder'] }}
@endsection @section('script') @endsection