@extends('layouts.app') @section('title', 'Production History') @section('content')
| ID | Date & Time | Product & Branch | Quantity | Unit Cost | Total Cost | Actions |
|---|---|---|---|---|---|---|
| #{{ $production->id }} |
{{ $production->created_at->format('Y-m-d') }}
{{ $production->created_at->format('H:i') }}
|
{{ $production->product->name_ar ?? $production->product->name_en ?? 'Product Deleted' }}
{{ $production->branch->name ?? 'Main Store' }}
|
{{ number_format($production->quantity_produced, 2) }} Units | ${{ number_format($production->unit_cost, 2) }} | ${{ number_format($production->total_cost, 2) }} |
|
|
No production history found matching your filters.
|
||||||