@extends('layouts.app') @section('title', 'لوحة العمليات') @section('content')
العمليات

لوحة العمليات

نظرة سريعة على الإنتاج والمونتاج والمدرسين.

إجمالي المحاضرات

{{ $totalProductions }}

🎬

بانتظار التصوير

{{ $pending }}

قيد التصوير

{{ $shooting }}

🎥

قيد المونتاج

{{ $editing }}

✂️

جاهزة / منشورة

{{ $ready }}

✂️

أعباء المحررين

@if ($editorWorkload->count() > 0)
@foreach ($editorWorkload as $editor)
{{ $editor->name }}
إجمالي {{ $editor->total_count ?? 0 }} @if (($editor->editing_count ?? 0) > 0) 🔴 {{ $editor->editing_count }} قيد المونتاج @else ✅ لا توجد مهام @endif
@endforeach
@else

📭 لا يوجد محررون.

@endif
📋

آخر المحاضرات

@if ($recentLectures->count() > 0)
@foreach ($recentLectures as $lecture)
#{{ $lecture->lecture_no ?? '?' }}

{{ $lecture->title ?: 'بلا عنوان' }}

{{ $lecture->teacher_name ?: '—' }} · {{ $lecture->course_name ?: '—' }} @if ($lecture->editor_name) · ✂️ {{ $lecture->editor_name }}@endif

{{ $editingLabels[$lecture->editing_status] ?? $lecture->editing_status }}
@endforeach
@else

📭 لا توجد محاضرات بعد.

@endif
👥

إحصائيات سريعة

المدرسون

{{ $teacherCount }}

المحررون

{{ $editorWorkload->count() }}

🔗

روابط سريعة

@endsection