{{ @$title }}
@csrf @php $startDate = \Carbon\Carbon::now()->format('M d, Y'); if (\Modules\Saas\Enums\PricingPlanDurationType::MONTHLY == @$pricingPlan['duration_type']) { $endDate = \Carbon\Carbon::now()->addMonths(1)->format('M d, Y'); } elseif (\Modules\Saas\Enums\PricingPlanDurationType::QUARTERLY == @$pricingPlan['duration_type']) { $endDate = \Carbon\Carbon::now()->addMonths(3)->format('M d, Y'); } elseif (\Modules\Saas\Enums\PricingPlanDurationType::HALF_YEARLY == @$pricingPlan['duration_type']) { $endDate = \Carbon\Carbon::now()->addMonths(6)->format('M d, Y'); } elseif (\Modules\Saas\Enums\PricingPlanDurationType::YEARLY == @$pricingPlan['duration_type']) { $endDate = \Carbon\Carbon::now()->addMonths(12)->format('M d, Y'); } @endphp
{{ _trans('common.Plan Name') }}
: {{ $pricingPlan['plan_name'] }}
{{ _trans('common.Duration Type') }}
: {{ $pricingPlan['duration_type'] }}
{{ _trans('common.Employee Limit') }}
: {{ $pricingPlan['employee_limit'] }}
{{ _trans('common.Is Popular') }}
: {{ $pricingPlan['is_popular'] }}
{{ _trans('common.Basic Price') }}
: {{ $pricingPlan['currency'] }}{{ $pricingPlan['basic_price'] }}
{{ _trans('common.Price') }}
: {{ $pricingPlan['currency'] }}{{ $pricingPlan['price'] }}
{{ _trans('common.Start Date') }}
: {{ showDate($startDate) }}
{{ _trans('common.End Date') }}
: {{ showDate($endDate) }}
Credit Card
Offline Payment
{{ _trans('common.Payment Type') }}
{{ _trans('common.Choose One') }}
@foreach ($offlinePaymentTypes ?? [] as $offlinePaymentType)
{{ $offlinePaymentType }}
@endforeach
{{ _trans('common.Additional Details') }}
*
{{ _trans('common.Submit') }}
{{ _trans('common.Submit') }}