@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 ? 'featured-card-body' : 'featured-card-body'; $btn_color = $package->is_featured ? 'btn-default' : 'btn-default'; @endphp
@endforeach
@endif @include('service.partials.custom-plan')
@stop