@extends('admin.layout') @section('title', 'إدارة باقات الاشتراك') @section('header', 'إدارة باقات الاشتراك والميزات') @section('content')
{{-- Header Section --}}

خطط الاشتراك المتاحة

تحكم في الميزات والحدود المتاحة لكل باقة

إنشاء باقة جديدة
{{-- Plans Grid --}}
@foreach($plans as $plan)
@if(!$plan->is_active)
معطلة
@endif {{-- Card Header --}}
@if($plan->slug === 'ultimate') @elseif($plan->slug === 'pro') @else @endif
{{ $plan->slug }}

{{ $plan->name }}

${{ number_format($plan->price, 0) }} / {{ $plan->duration_months }} شهر

{{-- Card Body: Limits --}}
الطلاب المسموحين {{ $plan->max_students == 0 ? '♾️ غير محدود' : number_format($plan->max_students) }}
المعلمين المسموحين {{ $plan->max_teachers == 0 ? '♾️ غير محدود' : number_format($plan->max_teachers) }}
{{-- Card Body: Features --}}

الميزات المدرجة

@php $features = is_array($plan->features) ? $plan->features : []; @endphp @forelse($features as $feature)
{{ str_replace(['-', '_'], ' ', ucfirst($feature)) }}
@empty

لا توجد ميزات خاصة

@endforelse
{{-- Action Buttons --}}
تعديل الباقة
@csrf @method('DELETE')
@endforeach
@endsection