@extends('layouts.app') @section('title', 'لوحة التحكم — التصنيع - '.config('app.name')) @section('breadcrumb') الرئيسية التصنيع لوحة التحكم @endsection @section('content') @php $kpiCards = [ [ 'label' => 'إجمالي قوائم المواد', 'value' => $totalBoms, 'iconBg' => 'bg-slate-100', 'iconColor' => 'text-slate-600', 'hint' => 'manufacturing.dashboard_kpi_total_bom', 'svg' => '', ], [ 'label' => 'قوائم المواد النشطة', 'value' => $activeBoms, 'iconBg' => 'bg-blue-100', 'iconColor' => 'text-blue-600', 'hint' => 'manufacturing.dashboard_kpi_active_bom', 'svg' => '', ], [ 'label' => 'إجمالي أوامر العمل', 'value' => $totalWorkOrders, 'iconBg' => 'bg-indigo-100', 'iconColor' => 'text-indigo-600', 'hint' => 'manufacturing.dashboard_kpi_total_wo', 'svg' => '', ], [ 'label' => 'قيد التنفيذ', 'value' => $inProgress, 'iconBg' => 'bg-amber-100', 'iconColor' => 'text-amber-600', 'hint' => 'manufacturing.dashboard_kpi_in_progress', 'svg' => '', ], [ 'label' => 'مكتمل هذا الشهر', 'value' => $completedThisMonth, 'iconBg' => 'bg-emerald-100', 'iconColor' => 'text-emerald-600', 'hint' => 'manufacturing.dashboard_kpi_completed_month', 'svg' => '', ], [ 'label' => 'الكفاءة', 'value' => $efficiencyPercent.'%', 'iconBg' => 'bg-violet-100', 'iconColor' => 'text-violet-600', 'hint' => 'manufacturing.dashboard_kpi_efficiency', 'svg' => '', ], ]; @endphp
@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif

لوحة التحكم

ملخص قوائم المواد وأوامر العمل

@foreach($kpiCards as $card)
{{ $card['label'] }}
{{ $card['value'] }}
@endforeach

أوامر العمل الأخيرة

أحدث الأوامر (مسودة أو مرحّلة)

عرض الكل
@forelse($recentWorkOrders as $wo) @php $pct = $wo->progressPercent(); @endphp @empty @endforelse
رقم الأمر المنتج الكمية التقدم تاريخ الاستحقاق الحالة
{{ $wo->reference }} {{ $wo->finishedItem?->name_ar ?? '—' }} {{ rtrim(rtrim(number_format((float) $wo->quantity_produced, 4, '.', ''), '0'), '.') ?: '0' }}
{{ $pct }}%
{{ $wo->production_date?->format('Y-m-d') ?? '—' }} @if($wo->status === \App\Models\ManufacturingRun::STATUS_POSTED) مكتمل @else قيد التنفيذ @endif عرض
لا توجد أوامر عمل
@endsection