@extends('layouts.front') @push('css') @endpush @section('content')
{{ $ps->plan_title }}

{{ $ps->plan_subtitle }}

@foreach ($plans as $key => $data)

{{ globalCurrency()->sign}}{{ showAmount($data->price) }} per month @if ($data->prev_price>0) {{ globalCurrency()->sign}}{{ showAmount($data->prev_price) }} @endif

{{ $data->title }}

{{ $data->subtitle }}
    @if ($data->attribute != NULL) @foreach (json_decode($data->attribute) as $key => $attribute)
  • {{ $attribute }}
  • @endforeach @endif
@endforeach
@includeIf('partials.front.cta') @include('partials.front.footer') @endsection @push('js') @endpush