Select the perfect combination of features, subscription duration, and user count to suit your needs
and
budget.
@php
$default = array_filter($plan->features, function ($feature) {
return $feature->pivot->default == 1;
});
$total_def = array_sum(array_column(array_column($default, 'pivot'), 'price'));
$opt = array_filter($plan->features, function ($feature) {
return $feature->pivot->default == 0;
});
$total_opt = array_sum(array_column(array_column($opt, 'pivot'), 'price'));
@endphp
{{--
--}}
@foreach ($default as $feature)
@endforeach
{{--
--}}
@foreach ($opt as $feature)
@endforeach
Cart summary ({{ $currency }})
Base price
price }}>
{{ $plan->price }}
Tax ({{ $plan->tax }})
tax }}>
{{ ($plan->tax / 100) * $total_def }}
Total
{{ ($plan->tax / 100) * $total_def + $total_def }}
@auth
Pay in Installments?
@endauth
@guest
@endguest
@foreach ($plan->deffered_payments as $deffered_payment)
id }} />
@endforeach
Pay now?