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

{{ __('Pricings') }}

@if($plan->id != 1)
@endif
@if (!count($pricing))

{{ __('No Data Found') }} !!

{{ __('Sorry we cant find any data, to get rid of this message, make at least 1 entry') }}.

@else
@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
    @endif
    @endsection