@extends('layout') @section('title') {{ $service->seo_title }} @php $tags = ''; if($service->tags){ foreach (json_decode($service->tags) as $service_tag) { $tags .= $service_tag->value.', '; } } @endphp @endsection @section('frontend-content')
#

{{ $service->title }}

{{__('admin.My Package')}}

{{ currency($service->price) }}
    @if ($service->features) @foreach (json_decode($service->features) as $feature) @if ($feature)
  • {{ $feature }}
  • @endif @endforeach @endif
{{ html_decode($service_author->total_follower) }}{{__('admin.Followers')}}
{{ html_decode($service_author->total_following) }}{{__('admin.Following')}}
@auth('web') {{__('admin.Contact Here')}} @else {{__('admin.Contact Here')}} @endauth
@if ($related_services->count() > 0)

{{__('admin.Related Services')}}

@endif @endsection