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

Stock Report

Total Items
{{ $items->count() }}
Total Stock Qty
{{ number_format($totalStock, 2) }}
Total Value
Rs. {{ number_format($totalValue, 2) }}
@forelse($items as $item) @empty @endforelse
Code Item Name Type Unit Stock Qty Rate Value
{{ $item->code }} {{ $item->name }} {{ $item->type }} {{ $item->unit }} {{ number_format($item->stock_qty, 2) }} {{ number_format($item->purchase_price, 2) }} {{ number_format($item->stock_qty * $item->purchase_price, 2) }}
No items found
Total: {{ number_format($totalStock, 2) }} - Rs. {{ number_format($totalValue, 2) }}
@endsection