@extends('admin.layouts.master') @section('title', 'تقرير التركيب') @section('page_title', 'تقرير التركيب وأداء الفرق') @section('breadcrumbs') @endsection @section('content') @include('admin.reports._filter', ['title' => 'تقرير التركيب'])
إجمالي التركيبات {{ number_format($report['total']) }}
متوسط التقييم {{ $report['avg_rating'] ?: '—' }}

حسب الحالة

أداء الفرق

@foreach($teamPerformance as $t) @endforeach
الفريقإجماليمكتملمتوسط التقييم
{{ $t->name }} {{ $t->orders_count }} {{ $t->completed_count }} {{ $t->avg_rating ? round((float) $t->avg_rating, 1) . ' / 5' : '—' }}
@endsection @push('scripts') @endpush