@extends('layouts.app') @section('content')
| Batch No | Date | Machine | Raw Material | Other Costs | Total Cost | Output Qty | Cost/Unit | Actions |
|---|---|---|---|---|---|---|---|---|
| {{ $production->batch_no }} | {{ $production->date->format('d-M-Y') }} | {{ $production->machine ?? '-' }} | Rs. {{ number_format($production->raw_material_cost, 2) }} | Rs. {{ number_format($production->total_cost - $production->raw_material_cost, 2) }} | Rs. {{ number_format($production->total_cost, 2) }} | {{ number_format($production->output_quantity, 2) }} KG | Rs. {{ number_format($production->cost_per_unit, 2) }} | |
| No production batches found. Create first production | ||||||||