@extends('layouts.app') @section('title', 'Stock Consumption Report Details') @section('content')
Opening Stock
{{ number_format($stockConsumptionReport->opening_stock ?? 0, 2) }}
{{ $stockConsumptionReport->unit ?? '' }}
Received
{{ number_format($stockConsumptionReport->received_quantity ?? 0, 2) }}
{{ $stockConsumptionReport->unit ?? '' }}
Consumed
{{ number_format($stockConsumptionReport->consumed_quantity ?? 0, 2) }}
{{ $stockConsumptionReport->unit ?? '' }}
Closing Stock
{{ number_format($stockConsumptionReport->closing_stock ?? 0, 2) }}
{{ $stockConsumptionReport->unit ?? '' }}