@include('include.message')

{{ __('Simple, transparent pricing') }}

{{ __('Choose a plan that works best for you') }}

@foreach ($plans as $plan)
{{ $plan->name }}
@if ($plan->amount_month * 12 > $plan->amount_year)
{{ __('Save :value%', ['value' => number_format((($plan->amount_month * 12 - $plan->amount_year) / ($plan->amount_month * 12)) * 100, 0)]) }}
@endif
@if ($plan->hasPrice())
{{ formatMoney($plan->amount_month, $plan->currency) }} {{ $plan->currency }}
{{ formatMoney($plan->amount_year, $plan->currency) }} {{ $plan->currency }}
@else

{{ __('Free') }}

{{ __('Free') }}

@endif
{{ __('Audio Chat') }}
{{ __('Video Chat') }}
{{ __('Text Chat') }}
{{ __('Screen Sharing') }}
{{ __('File Sharing') }}
{{ __('Whiteboard') }}
{{ __('Hand Raise') }}
{{ __('Recording') }}
{{ __('ChatGPT') }}
{!! '' . ($plan->features->time_limit == -1 ? __('Unlimited') : __('Up to') . $plan->features->time_limit) . '' . __('minutes') !!}
{!! '' . ($plan->features->meeting_no == -1 ? __('Unlimited') : $plan->features->meeting_no) . ' ' . __('Meetings') !!}
{!! '' . ($plan->features->user_limit == -1 ? __('Unlimited') : $plan->features->user_limit) . ' ' . __('Users') !!}
@endforeach