@extends('layouts.dashboard') @section('title', t('الخطط والأسعار','Plans & Pricing')) @section('page-title','💰 '.t('إدارة الخطط والأسعار','Manage Plans & Pricing')) @section('styles') @endsection @section('content') {{-- Existing Plans --}}
@foreach($plans as $plan)
@if($plan->id==='free')🆓@elseif($plan->id==='monthly')📅@elseif($plan->id==='quarterly')🗓️@elseif($plan->id==='yearly')⭐@elseif($plan->id==='lifetime')♾️@else💳@endif
{{ $plan->name }}
ID: {{ $plan->id }}
{{ $plan->active?t('نشطة','Active'):t('مخفية','Hidden') }} @if($plan->id !== 'free')
@csrf @method('DELETE')
@endif
@csrf
$
@foreach([30,90,180,365] as $d) @endforeach
{{ $plan->days === 0 ? '♾️ '.t('مدى الحياة','Lifetime') : $plan->days.' '.t('يوم','days') }}
@endforeach
{{-- Add New Plan --}}

➕ {{ t('إضافة خطة جديدة','Add New Plan') }}

@csrf
{{ t('حروف وأرقام فقط (بدون مسافات)','letters/numbers only') }}
{{-- Info --}}
💡 {{ t('التغييرات في الأسعار تؤثر فقط على الاشتراكات الجديدة وليس الموجودة','Price changes only affect new subscriptions, not existing ones') }}
@endsection @section('scripts') @endsection