@extends('layouts.app') @section('title', 'Production Reports') @section('subtitle', 'Production analytics and performance reports') @section('content')
Total Productions
{{ number_format($reportData['total_productions']) }}
Completed
{{ number_format($reportData['completed_productions']) }}
Target Quantity
{{ number_format($reportData['total_target_quantity'], 2) }}
Actual Quantity
{{ number_format($reportData['total_actual_quantity'], 2) }}
Overall Production Efficiency
| Code | Name | Type | Status | Target | Actual | Efficiency | Cost |
|---|---|---|---|---|---|---|---|
| {{ $production->production_code }} |
{{ $production->production_name }}
|
{{ ucfirst(str_replace('_', ' ', $production->type)) }} | {{ ucfirst(str_replace('_', ' ', $production->status)) }} | {{ $production->target_quantity ? number_format($production->target_quantity, 2) : '-' }} | {{ $production->actual_quantity ? number_format($production->actual_quantity, 2) : '-' }} | {{ $production->efficiency_percentage ? number_format($production->efficiency_percentage, 1) . '%' : '-' }} | {{ $production->actual_cost ? '$' . number_format($production->actual_cost, 2) : ($production->estimated_cost ? '$' . number_format($production->estimated_cost, 2) : '-') }} |
|
No production data found Adjust your date filters or create some productions. |
|||||||