@extends('layouts.admin') @section('content')
to

Total Stock IN:{{$allstockinCounter}}

Total Stock Out:{{$allstockoutCounter}}

@foreach($allproducts as $key=>$product) @if(!empty($product->stock_in)) @else @endif @if(!empty($product->stock_out)) @else @endif @endforeach
# Date ProductName Stock in Stock out
{{ date('j M Y', strtotime($product->created_at)) }} {{$key+1}} {{$product->rawsmatirals->name}}{{$product->stock_in}}{{$product->stock_out}}
@endsection @section('footer-content') @endsection