@extends('frontend::layouts.master') @section('content') {{-- Page Title --}} {{-- Service Detail --}}
{{ $service['name'] ?? '' }}

{!! $service['name'] ?? '' !!}

{!! $service['desc'] ?? '' !!}

{!! $service['detail'] ?? '' !!}

@if (!empty($service['features'] ?? []))
    @foreach ($service['features'] ?? [] as $feature)
  • {{ $feature ?? '' }}
  • @endforeach
@endif
{!! $service['text'] ?? '' !!}
@endsection