@extends('layouts.dashboard') @section('title', t('إدارة الاشتراك','Manage Subscription')) @section('page-title','💳 '.t('إدارة الاشتراك','Manage Subscription')) @section('content')
| {{ t('العضو','Member') }} | {{ $sub->user->name ?? '—' }} {{ $sub->user->email ?? '' }} |
| {{ t('الخطة','Plan') }} | {{ $sub->plan->name ?? $sub->plan_id }} |
| {{ t('License Key','License Key') }} |
{{ $sub->license_key }}
|
| {{ t('المواقع المسموحة','Sites Allowed') }} | {{ $sub->sites_allowed }} |
| {{ t('تاريخ الانتهاء','Expires') }} | @if($sub->expires_at) @php $expired = \Carbon\Carbon::parse($sub->expires_at)->isPast(); @endphp {{ $sub->expires_at }} @if($expired) {{ t('منتهي','Expired') }}@endif @else ♾️ {{ t('مدى الحياة','Lifetime') }} @endif |
| {{ t('تاريخ الإنشاء','Created') }} | {{ $sub->created_at->format('Y-m-d H:i') }} |
{{ t('لا يوجد مواقع مفعّلة','No active sites') }}
@endforelse