@extends('layouts.front') @push('css') @endpush @section('content')

@lang('Pricing Plan')

@lang('Lists of our all Popular plans')

{{ $ps->plan_title }}

{{ $ps->plan_subtitle }}

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

{{ $data->title }}

{{ $data->sub_title }}

{{ showAmount($data->price) }}

@php $attrs = json_decode($data->attribute, true); @endphp @if (is_array($attrs))
    @foreach ($attrs as $attr)
  • {{ $attr }}
  • @endforeach
@else {{ $package->attribute ?? '' }} @endif
@if (auth()->user() && auth()->user()->plan_id == $data->id) @lang('Current Plan')
({{ auth()->user()->plan_end_date ? auth()->user()->plan_end_date->toDateString() : '' }}) @lang('Renew Plan')
@else @lang('Choose Plan') @endif
@endforeach
@includeIf('partials.front.cta') @endsection @push('js') @endpush