{!! Theme::partial('shortcode-heading', compact('shortcode')) !!}
@foreach ($packages as $package)
$package->is_default])>

{{ $package->price == 0 ? __('Free') : format_price($package->price) }}

/ @if ($package->number_of_listings === 1) {{ __('1 post') }} @else {{ __(':number posts', ['number' => number_format($package->number_of_listings)]) }} @endif
{!! BaseHelper::clean($package->name) !!}
@if ($package->description)

{{ $package->description }}

@endif
@if ($package->features) @php $features = is_array($package->features) ? $package->features : json_decode($package->features, true); @endphp
    @foreach ($features as $feature)
  • {!! BaseHelper::clean(Arr::get($feature, '0.value')) !!}
  • @endforeach
@endif {{ __('Choose The Package') }}
@endforeach