@extends('layouts.user_type.auth') @section('header_title', __('مدیریت پلن ها')) @section('content')

{{ __('مدیریت پلن ها') }}

{{ __('پلن های قابل خرید کاربران را تعریف و مرتب کنید.') }}
{{ __('افزودن پلن') }}
@if(session('success'))
{{ session('success') }}
@endif
{{ __('حذف') }}
@forelse($plans as $plan) @empty @endforelse
{{ __('پلن') }} {{ __('قیمت') }} {{ __('مدت') }} {{ __('وضعیت') }} {{ __('استفاده') }} {{ __('ترتیب') }} {{ __('عملیات') }}
{{ $plan->name }} {{ $plan->slug }} @if($plan->description) {{ \Illuminate\Support\Str::limit($plan->description, 90) }} @endif {{ __('دانلود ماهانه') }}: {{ $plan->monthly_download_limit_label }} | {{ __('دیدن لایو') }}: {{ $plan->can_watch_lives ? __('دارد') : __('ندارد') }} {{ __('ساخت لایو') }}: {{ $plan->monthly_live_create_limit_label }} | {{ __('لایو فروشی') }}: {{ $plan->monthly_paid_live_create_limit_label }} {{ $plan->price_formatted }} {{ $plan->duration_label }} {{ $plan->is_active ? __('فعال') : __('غیرفعال') }} {{ __('کاربران فعلی: :count', ['count' => $plan->wallets_count]) }} {{ __('تراکنش ها: :count', ['count' => $plan->transactions_count]) }} {{ $plan->sort_order }}
@csrf @method('DELETE')
{{ __('هنوز پلنی ثبت نشده است.') }}
@if($plans->hasPages())
{{ __('قبلی') }} {{ __('صفحه :current از :last', ['current' => $plans->currentPage(), 'last' => $plans->lastPage()]) }} {{ __('بعدی') }}
@endif
@endsection