@extends('layouts.app') @section('title', __('report.stock_report')) @section('content')

Physical Stock List

@if(Session::has('success'))
{{ Session::get('success') }}
@endif

@foreach ($products as $item) @endforeach
SKU Date @lang('business.product') Current Stock
(balancing time)
Balance Physical Stock Action
{{ date('d-m-Y', strtotime($item->created_at)) }} {{ $item->sku }} {{ $item->name }} {{ $item->current_stock }} {{$item->physical_qty- $item->current_stock }} {{ $item->physical_qty }} Edit Delete
@endsection @section('javascript') @endsection