@extends($layout_path) @section('title', $app_setting['name'] . ' | ' . __('My Current Plan')) @section('content')

{{ __('My Current Plan') }}

{{-- content start --}}
@if ($plan)
{{ $plan->duration }}
{{ $plan->plan_type == 'monthly' ? __('Days') : __('Year') }}
{{ $plan->title }}
  • {!! $plan->description !!}
{{ $plan->price }}/ {{ $plan->plan_type }}

{{ __('Subscription Date') }}: {{ \Carbon\Carbon::parse($subscription->subscribed_at)->format('d M, Y h:i A') }}

{{ __('Renewal Date') }}: {{ \Carbon\Carbon::parse($subscription->expires_at)->format('d M, Y h:i A') }}

@else
{{ __('You are not subscribed to any plan') }}
@endif {{-- payment-modal code start --}}
{{-- content end --}}
@endsection @push('styles') @endpush