@extends('layouts.new_theme') @section('content')

{{ __('Pricing') }}

@include('common.demo') @include('common.errors')
@foreach ($pricing as $price)
{{ __($price->term) }} {{ __($price->period) }}

{{ $price->price }} {{ $price->currencies->currency }}

  • {{ __('No. of servers') }} {{ $plan->server_count ? $plan->server_count : 'Unlimited' }}
  • {{ __('No. of webpages') }} {{ $plan->webpage_count ? $plan->webpage_count : 'Unlimited' }}
  • {{ __('No. of APIs') }} {{ $plan->api_count ? $plan->api_count : 'Unlimited' }}
  • {{ __('No. of ssl') }} {{ $plan->ssl_count ? $plan->ssl_count : 'Unlimited' }}
  • {{ __('No. of domains') }} {{ $plan->domain_count ? $plan->domain_count : 'Unlimited' }}
  • {{ __('No. of subdomains') }} {{ $plan->subdomain_count ? $plan->subdomain_count : 'Unlimited' }}
  • {{ __('No. of DNSs') }} {{ $plan->dns_count ? $plan->dns_count : 'Unlimited' }}
  • {{ __('No. of Keywords') }} {{ $plan->keyword_count ? $plan->keyword_count : 'Unlimited' }}
  • @if (env('APP_ENV') != 'demo') @endif
    @endforeach
    @endsection