@extends('layouts/default') {{-- Page title --}} @section('title') Invoice @parent @stop {{-- page level styles --}} @section('header_styles') @stop {{-- Page content --}} @section('content')

Quantity Report

{{Session::get('company')}}

{{$voucherhead}}


Date From: 01-01-1970   To: 07-08-2026

@foreach($results as $item) @endforeach
SI.No. Item Code Description Unit Quantity Cost Avg. Total
{{$i}} {{$item['itemcode']}} {{$item['description']}} {{$item['unit']}} {{$quantity}} {{number_format($cost,2)}} {{number_format($subtotal,2)}}
Grand Total: {{$qtytotal}} {{number_format($total,2)}}
@include('layouts.right_sidebar')
@stop {{-- page level scripts --}} @section('footer_scripts') @stop