@include('layouts.partials.brand-icons') @vite(['resources/sass/main-site.scss', 'resources/js/app.js']) {{-- Background mesh gradient blobs --}}
{{-- ========================================================= NAVBAR ========================================================== --}}
{{ __('Pricing') }}

{{ __('Our Internet Packages') }}

{{ __('Find the high-speed broadband plan that matches how you work.') }}

@php $pkgColors = ['', 'pricing-box-2', 'pricing-box-3', '']; @endphp @foreach($packages as $index => $package) @php // Run speed detection logic $detectedSpeed = $package->speed; if (empty($detectedSpeed)) { if (preg_match('/_(\d+)M$/i', $package->package, $matches)) { $detectedSpeed = $matches[1] . ' Mbps'; } elseif (is_numeric($package->description)) { $detectedSpeed = $package->description . ' Mbps'; } else { $detectedSpeed = 'Standard'; } } // Clean category name $cleanCat = 'Standard'; if ($package->plan_label && strtolower($package->plan_label) !== 'standard') { if (str_contains($package->plan_label, '-')) { $cleanCat = explode('-', $package->plan_label)[0]; } else { $cleanCat = $package->plan_label; } } $cleanCat = trim($cleanCat); @endphp
@endforeach

{{ __('No Packages Found') }}

{{ __('Try adjusting your search terms or category filters.') }}

{{-- ========================================================= FOOTER ========================================================== --}}