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

{{ __('Pricing') }}

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

{{ $plan->price }} USD

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