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

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

{{ __('Created Date') }}:
{{ $id->created_at }}
{{ __('Plan Type') }}:
Subscription
{{ __('Plan Name') }}:
{{ ucfirst($id->plan_name) }}
{{ __('Plan Status') }}:
{{ ucfirst($id->status) }}
{{ __('Price') }}:
{{ $id->cost }}
{{ __('Currency') }}:
{{ $id->currency }}
{{ __('Payment Frequence') }}:
{{ ucfirst($id->payment_frequency) }}
{{ __('Included Characters') }}:
{{ ucfirst($id->characters) }}
{{ __('Bonus Characters') }}:
{{ $id->bonus }}
{{ __('PayPal Gateway Plan ID') }}:
{{ $id->paypal_gateway_plan_id }}
{{ __('Stripe Gateway Plan ID') }}:
{{ $id->stripe_gateway_plan_id }}
@if ($id->plan_type == 'subscription')
{{ __('Primary Heading') }}:
{{ ucfirst($id->primary_heading) }}
{{ __('Secondary Heading') }}:
{{ $id->secondary_heading }}
{{ ('Plan Features') }} ({{ __('Comma seperated') }}):
{{ ucfirst($id->plan_features) }}
@endif
@endsection