@section('page-title', 'cPanel Hosting Packages')

📦 cPanel Hosting Packages

Create and synchronize hosting package plans directly with cPanel/WHM server nodes

@csrf
Add Package
@if(session('success')) @endif @if(session('error')) @endif
@if($packages->isEmpty())

No hosting packages templates created yet.

Add First Package
@else
@foreach($packages as $pkg) @endforeach
Package Name Server Node Disk Limit Bandwidth Limit FTP / DB Limits Monthly Price Actions
{{ $pkg->package_name }} {{ $pkg->server->name ?? 'Unknown' }} {{ $pkg->disk_limit == 0 ? 'Unlimited' : $pkg->disk_limit . ' MB' }} {{ $pkg->bandwidth_limit == 0 ? 'Unlimited' : $pkg->bandwidth_limit . ' MB' }} FTP: {{ $pkg->max_ftp ?: 'Unlimited' }} | SQL: {{ $pkg->max_sql ?: 'Unlimited' }} {{ number_format($pkg->monthly_price, 2) }} {{ $pkg->currency }}
@csrf @method('DELETE')
@endif