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

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

{{ __('Plan Name') }}{{ ucfirst($id->plan_name) }}
{{ __('Plan Status') }}{{ ucfirst($id->status) }}
{{ __('Payment Frequency') }}{{ ucfirst($id->payment_frequency) }}
{{ __('Price') }}{{ $id->price }} {{ $id->currency }}
{{ __('OpenAI Model for Text') }}{{ $id->model }}
{{ __('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 }}
{{ __('Words Included') }}{{ number_format($id->words) }} {{ __(' words') }}
{{ __('Images Included') }}{{ number_format($id->images) }} {{ __(' images') }}
{{ __('Total Text Result Length') }}{{ number_format($id->max_tokens) }} {{ __(' tokens') }}
{{ __('Supported Templates') }}{{ ucfirst($id->templates) }}
{{ __('AI Image Feature') }}@if($id->image_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) }}
{{ __('Created On') }}{{ date_format($id->created_at, 'M d, Y H:i A') }}
{{ __('Last Updated On') }}{{ date_format($id->updated_at, 'M d, Y H:i A') }}
@endsection