@extends('layouts.app') @section('title', 'Order Dedicated Server') @section('content')

Dedicated Server Plans

Ultimate performance with fully dedicated hardware

@if($products->isEmpty())

No hosting plans available at the moment.

@else
@foreach($products as $product)

{{ $product->name }}

{{ $product->description ?? 'Perfect for growing websites' }}

@if($product->features)
@foreach($product->features as $key => $value)
{{ ucfirst($key) }}: {{ $value }}
@endforeach
@endif
@php $monthlyPrice = $product->pricing->where('billing_cycle', 'monthly')->first(); @endphp @if($monthlyPrice)
Starting at
{{ format_currency($monthlyPrice->price) }} /mo
@if($monthlyPrice->setup_fee > 0)
+ {{ format_currency($monthlyPrice->setup_fee) }} setup fee
@endif
@endif
@csrf
@endforeach
@endif

Why Choose Us?

Lightning Fast

Optimized servers for maximum performance

Secure & Safe

Free SSL certificates and daily backups

24/7 Support

Expert support whenever you need it

@endsection