الرئيسية
{{ $screen === 'create' ? 'إضافة عميل' : 'تعديل عميل' }}
معلومات العميل
اسم الجهة: {{ $name ?: 'لم يتم الإدخال' }}
جوال (المالك): {{ $phone ?: 'لم يتم الإدخال' }}
البريد الالكتروني: {{ $email ?: 'لم يتم الإدخال' }}
المدينة: @if ($city_id) {{ \App\Models\City::find($city_id)?->name ?? 'غير محدد' }} @else لم يتم الاختيار @endif
الباقة: @if ($package_id) {{ $packages->find($package_id)?->name ?? 'غير محدد' }} @else لم يتم الاختيار @endif
الخدمات: @if (is_array($program_id) && count($program_id) > 0) @php $selectedPrograms = \App\Models\Program::whereIn('id', $program_id) ->pluck('name') ->toArray(); @endphp {{ implode(', ', $selectedPrograms) }} @else لم يتم الاختيار @endif
الحالة: @if ($status) @if (is_object($status) && method_exists($status, 'label')) {{ $status->label() }} @else {{ \App\Enums\ClientStatus::tryFrom($status)?->label() ?? 'غير محدد' }} @endif @else لم يتم الاختيار @endif
مصدر العميل: @if ($customer_source_id) {{ $sources->find($customer_source_id)?->name ?? 'غير محدد' }} @else لم يتم الاختيار @endif
رقم الهوية: {{ $id_number ?: 'لم يتم الإدخال' }}
اسم شخص آخر للاتصال: {{ $second_contact_name ?: 'لم يتم الإدخال' }}
رقم جوال الشخص الآخر: {{ $second_contact_phone ?: 'لم يتم الإدخال' }}
العنوان: {{ $address ?: 'لم يتم الإدخال' }}
الموظف: @if ($user_id) {{ \App\Models\User::find($user_id)?->name ?? 'غير محدد' }} @else لم يتم الاختيار @endif
نوع العميل: @if ($client_type == 'b2b') B2B (شركات) @elseif($client_type == 'b2c') B2C (افراد) @else لم يتم الاختيار @endif
نوع المكان: @if ($place_type_id) {{ \App\Models\PlaceType::find($place_type_id)?->name ?? 'غير محدد' }} @else لم يتم الاختيار @endif
ملاحظات: {{ $notes ?: 'لا توجد ملاحظات' }}