@extends('layouts.main') @push('styles') @endpush @section('content')
| # | Brick Type | Open Stock Output | Closed Stock Output | Total Output |
|---|---|---|---|---|
| {{ $index + 1 }} | {{ $item->brickType->name }} | {{ number_format($item->open_output) }} | {{ number_format($item->closed_output) }} | {{ number_format($item->open_output + $item->closed_output) }} |
| # | Brick Type | Expected Output | Actual Output | Extra/Short Output |
|---|---|---|---|---|
| {{ $index + 1 }} | {{ $item->brickType->name ?? 'Unknown' }} | {{ number_format($item->expected_output) }} | {{ number_format($item->actual_output) }} | {{ $prefix }}{{ number_format(abs($diff)) }} |