@extends('layouts.app') @section('title', 'Production History') @section('content')
Production History
New Production
@forelse($productions as $production) @empty @endforelse
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.
@if($productions->hasPages()) @endif
@endsection