@extends('front.layout') @section('meta-keywords', "$seo->package_meta_key") @section('meta-description', "$seo->package_meta_desc") @section('content')

{{ $sinfo->package_title }}

@foreach($plans as $key => $plan)
{{ $plan->title }}

{{Helper::showCurrencyPrice($plan->price)}}

@if($plan->time) {{ $plan->time }} @else @endif
    @php $feature = explode( ',', $plan->feature ); for ($i=0; $i < count($feature); $i++) { echo '
  • '.$feature[$i].'

  • '; } @endphp
@if ($plan->button_text != null && $plan->button_link != null) {{ $plan->button_text }} @endif
@endforeach
@endsection