@extends('front.layout.app') @section('seo_title') {{ $page_two_data->pricing_seo_title }} @endsection @section('seo_meta_description') {{ $page_two_data->pricing_seo_meta_description }} @endsection @section('main_content')

@isset($page_two_data->pricing_title_highlight) {{ $page_two_data->pricing_title_highlight }} @endisset{{ $page_two_data->pricing_title }}

{{ $page_two_data->pricing_subtitle }}

@foreach ($plans as $item)
@if ($item->badge || $item->badge_percentage)

{{ $item->badge }} @if ($item->badge_percentage) {{ $item->badge_percentage }} off @endif

@endif

{{ $item->title }}{{ $item->subtitle }}

{{ $setting_data->currency_symbol }}{{ $item->price }}{{ $item->renew }}

{{ $item->title }}
    @php $lists = explode("\n", $item->list); @endphp @foreach ($lists as $list)
  • {!! $list !!}
  • @endforeach
@endforeach
@endsection