@extends('layouts.app') @section('content')

Stock Summary Report

@csrf
@isset($summaries)
From {{ \Carbon\Carbon::parse($fromDate)->format('d M Y') }} to {{ \Carbon\Carbon::parse($toDate)->format('d M Y') }}
@foreach($summaries as $row) @endforeach
Sr. Item Name Opening Qty Received Issue (Qty+Bonus) Closing Qty
{{ $row->sr }} {{ $row->item_name }} {{ number_format($row->opening_qty, 0) }} {{ number_format($row->received, 0) }} {{ number_format($row->issued, 0) }} {{ number_format($row->closing_qty, 0) }}
@endisset
@endsection