@php $cs = $customerService; $hosting = $cs->hostingAccount; @endphp {{ $cs->service?->name }} رقم الخدمة: {{ $cs->service_number }} + تذكرة دعم
{{-- Main column --}}
{{-- Service overview --}}

تفاصيل الخدمة

الباقة
{{ $cs->plan?->name ?? '—' }}
دورة الفوترة
{{ $cs->billing_cycle ?? '—' }}
السعر المدفوع
{{ number_format((float) $cs->price_paid, 2) }} ر.س
السيرفر
{{ $cs->serverNode?->name ?? '—' }}
تاريخ التفعيل
{{ $cs->activated_at?->translatedFormat('d M Y') ?? '—' }}
تاريخ الانتهاء
{{ $cs->expires_at?->translatedFormat('d M Y') ?? '—' }}
{{-- Hosting account info (if any) --}} @if($hosting)

معلومات الاستضافة

النطاق الرئيسي
{{ $hosting->primary_domain ?? '—' }}
عنوان IP
{{ $hosting->ip_address ?? '—' }}
اسم الباقة
{{ $hosting->package_name ?? '—' }}
اسم مستخدم cPanel
{{ $hosting->cpanel_username ?? '—' }}
@if($hosting->disk_quota_mb) @php $diskUsed = (int) $hosting->current_disk_used_mb; $diskTotal = max(1, (int) $hosting->disk_quota_mb); $diskPct = min(100, round(($diskUsed / $diskTotal) * 100)); $bwUsed = (int) $hosting->current_bandwidth_used_mb; $bwTotal = max(1, (int) $hosting->bandwidth_quota_mb); $bwPct = min(100, round(($bwUsed / $bwTotal) * 100)); @endphp
المساحة المستخدمة {{ $diskUsed }} / {{ $diskTotal }} MB
الباندويدث {{ $bwUsed }} / {{ $bwTotal }} MB
@endif
@endif {{-- Credentials --}}

بيانات الدخول الآمنة

⚠️ كلمات المرور تظهر لمدة 10 ثوانٍ فقط، ويتم تسجيل كل عملية كشف.

@if($cs->credentials->isEmpty())

لا توجد بيانات اعتماد متاحة بعد. سيتم إرسال البيانات هنا فور تسليم الخدمة.

@else
@foreach($cs->credentials as $cred) @endforeach
@endif
{{-- Sidebar --}}
{{-- Delivery notes --}}

ملاحظات التسليم

@if($cs->deliveryNotes->isEmpty())

لا توجد ملاحظات تسليم بعد.

@else
    @foreach($cs->deliveryNotes as $note)
  • {{ $note->delivered_at?->translatedFormat('d M Y H:i') }}

    {{ $note->customer_facing_notes ?? '—' }}

  • @endforeach
@endif
{{-- Linked tickets --}}

التذاكر المرتبطة

@if($cs->tickets->isEmpty())

لا توجد تذاكر.

@else
    @foreach($cs->tickets as $tk)
  • {{ $tk->ticket_number }}

    {{ $tk->subject }}

  • @endforeach
@endif