@extends('layouts.app') @section('page-header') @endsection @section('content')

{{ __('Subscription Plan Name') }}: {{ $id->plan_name }}

{{ __('Plan Type') }}
{{ ucfirst($id->payment_frequency) }}
{{ __('Plan Name') }}
{{ ucfirst($id->plan_name) }}
{{ __('Plan Status') }}
{{ ucfirst($id->status) }}
{{ __('Price') }}
{{ $id->price }}
{{ __('Currency') }}
{{ $id->currency }}
{{ __('Created Date') }}
{{ date_format($id->created_at, 'M d Y, H:i:s') }}
{{ __('Payment Gateways') }}
{{ __('Paypal Plan ID') }}
{{ $id->paypal_gateway_plan_id }}
{{ __('Stripe Plan ID') }}
{{ $id->stripe_gateway_plan_id }}
{{ __('Razorpay Plan ID') }}
{{ $id->razorpay_gateway_plan_id }}
{{ __('Paystack Plan ID') }}
{{ $id->paystack_gateway_plan_id }}
{{ __('Included AI Credits') }}
{{ __('GPT 4 Model Credits') }}
{{ number_format($id->gpt_4_credits) }}
{{ __('GPT 4 Turbo Model Credits') }}
{{ number_format($id->gpt_4_turbo_credits) }}
{{ __('GPT 3 Turbo Model Credits') }}
{{ number_format($id->gpt_3_turbo_credits) }}
{{ __('Fine Tune Model Credits') }}
{{ number_format($id->fine_tune_credits) }}
{{ __('Claude 3 Opus Model Credits') }}
{{ number_format($id->claude_3_opus_credits) }}
{{ __('Claude 3 Sonnet Model Credits') }}
{{ number_format($id->claude_3_sonnet_credits) }}
{{ __('Claude 3 Haiku Model Credits') }}
{{ number_format($id->claude_3_haiku_credits) }}
{{ __('Gemini Pro Model Credits') }}
{{ number_format($id->gemini_pro_credits) }}
{{ __('Characters Included') }}
{{ number_format($id->characters) }}
{{ __('Dalle Images Included') }}
{{ number_format($id->dalle_images) }}
{{ __('Stable Diffusion Images Included') }}
{{ number_format($id->sd_images) }}
{{ __('Minutes Included') }}
{{ number_format($id->minutes) }}
{{ __('Included AI Models') }}
{{ __('AI Models for Templates') }}
{{ $id->model }}
{{ __('AI Model for Chatbots') }}
{{ $id->model_chat }}
{{ __('Included Features') }}
{{ __('AI Image Feature') }}
@if($id->image_feature)@else @endif
{{ __('AI Voiceover Feature') }}
@if($id->voiceover_feature)@else @endif
{{ __('AI Speech to Text Feature') }}
@if($id->transcribe_feature)@else @endif
{{ __('AI Chat Feature') }}
@if($id->chat_feature)@else @endif
{{ __('AI Code Feature') }}
@if($id->code_feature)@else @endif
{{ __('AI Article Wizard Feature') }}
@if($id->wizard_feature)@else @endif
{{ __('Total Text Result Length') }}{{ number_format($id->max_tokens) }} {{ __(' tokens') }}
{{ __('Supported Template Package') }}{{ ucfirst($id->templates) }}
{{ __('Supported Chat Package') }}{{ ucfirst($id->chats) }}
{{ __('Team Members') }}{{ $id->team_members }}
{{ __('AI Vision Feature') }}@if($id->vision_feature)@else @endif
{{ __('Free Plan') }}@if($id->free)@else @endif
{{ __('Featured Plan') }}@if($id->featured)@else @endif
{{ __('Primary Heading') }}{{ ucfirst($id->primary_heading) }}
{{ __('Plan Features') }}{{ ucfirst($id->plan_features) }}
@endsection