@extends('layouts.front') @push('css') @endpush @section('content') @includeIf('partials.user.header')
@includeIf('partials.user.sidebar')

@lang('Pricing Plans')

@lang('All Plans')

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

{{ globalCurrency()->sign}}{{ showAmount($data->price) }} @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
@if (auth()->user()->plan_id == $data->id) @lang('Current Plan')
({{ Carbon\Carbon::parse(auth()->user()->plan_end_date) ? Carbon\Carbon::parse(auth()->user()->plan_end_date)->toDateString() : '' }}) @lang('Renew Plan')
@else @lang('Purchase Now') @endif
@endforeach
@php echo $gs->copyright; @endphp
@endsection @push('js') @endpush