@extends('layouts.dashboard')
@section('title','اشتراكي')
@section('page-title','🔑 اشتراكي')
@section('content')
@if($subscription)
مفتاح اللايسنس
{{ $subscription['license_key'] }}
تفاصيل الاشتراك
| الباقة | {{ $subscription['plan_name'] }} |
| الحالة | {{ $subscription['status']==='active'?'✅ نشط':'⛔ موقوف' }} |
| المواقع المسموحة | {{ $subscription['sites_allowed'] }} موقع |
| تاريخ الانتهاء | {{ $subscription['expires_at']??'مدى الحياة ♾️' }} |
المواقع المفعّل عليها
| الدومين | تاريخ التفعيل | آخر تحقق |
@forelse($subscription['activations']??[] as $a)
{{ $a['domain'] }} | {{ \Illuminate\Support\Str::limit($a['activated_at']??'',10,'') }} | {{ \Illuminate\Support\Str::limit($a['last_check']??'—',10,'') }} |
@empty
| لم يُفعَّل بعد |
@endforelse
@else
@endif
@endsection