@php $plans = [ [ "name" => "cPanel/whm licenses for VPS Server", "subtitle" => "START FROM", "price" => 599, "features" => [ ["icon" => "globe", "text" => "Create cPanel unlimited accounts"], ["icon" => "shield", "text" => "Free Premium softaculous (One click CMS installer )"], ["icon" => "shield", "text" => "Free Free FileSSL (Lets encrypt SSL certificate )"], ["icon" => "wrench", "text" => "Free sitepad website builder"], ["icon" => "server", "text" => "Free Installation for license"], ["icon" => "headphones", "text" => "Always free in house technical support"], ], "bestValue" => false, ], [ "name" => "cPanel/whm licenses for Dedicated Server", "subtitle" => "START FROM", "price" => 1099, "features" => [ ["icon" => "globe", "text" => "Create cPanel unlimited accounts"], ["icon" => "shield", "text" => "Free Premium softaculous (One click CMS installer )"], ["icon" => "shield", "text" => "Free Free FileSSL (Lets encrypt SSL certificate )"], ["icon" => "wrench", "text" => "Free sitepad website builder"], ["icon" => "server", "text" => "Free Installation for license"], ["icon" => "headphones", "text" => "Always free in house technical support"], ], "bestValue" => true, ], ]; @endphp

Choose Your Perfect cPanel License Plan

Flexible licensing for VPS and Dedicated servers with premium features.

@foreach ($plans as $index => $plan)
@if ($plan['bestValue'])
Best Value
@endif

{{ $plan['name'] }}

{{ $plan['subtitle'] }}

    @foreach ($plan['features'] as $feature)
  • @if ($feature['icon'] === 'globe') @elseif ($feature['icon'] === 'shield') @elseif ($feature['icon'] === 'wrench') @elseif ($feature['icon'] === 'server') @elseif ($feature['icon'] === 'headphones') @endif {{ $feature['text'] }}
  • @endforeach
Buy Now
@endforeach