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

{{ __('Pricing') }}

@include('common.demo') @include('common.errors')
@foreach ($plans as $plan)
{{ __($plan->name) }}
{{--

{{ $plan->price }} USD

--}}
  • {{ __('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