@extends('layout') @section('title', "$service->name Service") @section('meta:title', 'AccessWorld: ' . $service->name) @section('meta:description', $service->short_description) @push('styles') @endpush @section('content') @include('commons.banner', [ 'banners' => $service->banner ] )

{{ ucwords($service->name) }}

{{ $service->short_description }}

@unless(empty($service->description))

{!! $service->description !!}

@endunless @php $function = camel_case($service->slug) . 'Packages'; @endphp @if (function_exists($function))
@foreach ($function() as $package) @php $featured = $package->is_featured ? 'style-primary' : 'style-gray'; $btn_color = $package->is_featured ? 'btn-primary' : 'btn-accent'; @endphp
@if ($hasDiscount = $package->discount > 0)
{{ $package->discount }}% off
@endif

{{ $package->service->name }}

{{ ucwords($package->name) }}

Starting at
{{ get_local_currency_prefix() }}

{{ get_local_currency($package->price) }}

@if ($service->slug == 'web') /yr @else /mo @endif

    @foreach ($package->getComponents() as $component => $value)
  • {{ strtoupper($component) }} {{ $value }}
  • @endforeach
  • 24/7 Customer Support
@endforeach
@endif @include('service.partials.custom-plan')
@stop