@extends('layouts.public') @section('title', 'Hosting Plans') @section('content')

Hosting Plans

Pick a package and checkout in one page (domain + hosting + signup + JazzCash).

@foreach($plans as $plan)
{{ $plan->name }}
{{ $plan->description }}
PKR {{ number_format((float)$plan->price_monthly, 0) }}
per month
PKR {{ number_format((float)$plan->price_yearly, 0) }}
per year
    @foreach(($plan->features ?? []) as $feat)
  • {{ $feat }}
  • @endforeach
@endforeach
@endsection