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

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

نظرة شاملة على جميع الليدات

📊 عرض Pipeline
@if($isManager)

إجمالي الليدات

{{ $totalLeads }}

👥
@endif

ليداتي

{{ $myLeadsCount }}

📋

ليدات جديده هذا الأسبوع

{{ $newLeadsThisWeek }}

🆕

مسجل هذا الشهر

{{ $registeredThisMonth }}

🎓
📊

توزيع الليدات (جميع المندوبين)

@php $statusLabels = ['new'=>'جديد','contacted'=>'تم التواصل','dead'=>'ميت','interested'=>'مهتم','documents_collected'=>'مستندات','paid'=>'تم الدفع','final_acceptance'=>'قبول نهائي','registered'=>'مسجل']; $statusColors = ['new'=>'bg-secondary-500/10 text-secondary-600','contacted'=>'bg-blue-50 text-blue-700','dead'=>'bg-red-50 text-red-700','interested'=>'bg-green-50 text-green-700','documents_collected'=>'bg-purple-50 text-purple-700','paid'=>'bg-emerald-50 text-emerald-700','final_acceptance'=>'bg-green-50 text-green-700','registered'=>'bg-green-50 text-green-700']; @endphp @foreach ($statuses as $s) @if (($statusCounts[$s] ?? 0) > 0)
{{ $statusLabels[$s] ?? $s }} {{ $statusCounts[$s] }}
@endif @endforeach
@endsection