@vite(['resources/sass/main-site.scss', 'resources/js/app.js']) {{-- Background mesh gradient blobs --}}
{{-- ========================================================= NAVBAR ========================================================== --}}

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

{{ __('Find the perfect high-speed broadband plan matching your needs') }}

@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 ========================================================== --}}