@extends("layouts.admin.app") @section("page-title") {{__("Dashboard")}} @endSection @section("page-nav-title")

{{__("stock")}}

{{__("all-stock")}}

@endsection @section("content") @include("includes.dialog")
@php $sl=0; @endphp @foreach($items as $item) @endforeach
# {{__("store")}} {{__("item")}} {{__("qty_in")}} {{__("qty_out")}} {{__("qty_res")}} {{__("qty_available")}}
{{++$sl}} {{$item->store->name}} {{$item->item->name}} {{$item->qty_in}} {{$item->qty_out}} {{$item->qty_res}} {{ $item->qty_in - ($item->qty_out + $item->qty_res)}}
@endsection