@extends('layouts.frontend') @section('headerMeta') {{ $metaTitle }} @endsection @section('content') @include('layouts.frontend-partial.breadcrumb')
@if (!empty($info->images)) {{ $info->tag_title }} @endif

{{ !empty($info->title) ? $info->title : '' }}

{{ !empty($info->subtitle) ? $info->subtitle : '' }}

{{ !empty($info->short_description) ? $info->short_description : '' }}

{{ !empty($info->tag_title) ? $info->tag_title : '' }}

@if (!empty($info->tags) && $info->tags != 'null') @php($feature = json_decode($info->tags))
    @foreach ($feature as $tag)
  • {{ !empty($tag) ? $tag : '' }}
  • @endforeach
@endif
{!! (!empty($info->description) ? $info->description : "") !!}
{{-- Pricing Section --}} @include('layouts.frontend-partial.pricing') @endsection