@if ($module->price == '0.0000')
{{ trans('modules.free') }}
@else
@if (!empty($module->is_discount))
{!! $module->yearly_per_monthly_price !!}
{!! $module->yearly_per_monthly_special_price !!} {{ trans('modules.per_month') }}
@else
{!! $module->yearly_per_monthly_price !!} {{ trans('modules.per_month') }}
@endif
@endif
{{ trans('modules.billed_yearly') }}
@if (!empty($module->is_discount))
@php
$price = '' . '$' . $module->raw_monthly_price * 4 . ' ' . '$' . $module->raw_monthly_special_price * 4;
@endphp
{!! trans('modules.save_year', ['price' => $price]) !!}
@else
{!! trans('modules.save_year', ['price' => '$' . $module->raw_monthly_price * 4]) !!}
@endif
@if ($module->price == '0.0000')
{{ trans('modules.free') }}
@else
@if (!empty($module->is_discount))
{!! $module->monthly_price !!}
{!! $module->monthly_special_price !!} {{ trans('modules.per_month') }}
@else
{!! $module->monthly_price !!} {{ trans('modules.per_month') }}
@endif
@endif
{{ trans('modules.billed_monthly') }}
@if (!empty($module->is_discount))
{!! trans('modules.if_paid_year', ['price' => '' . $module->yearly_per_monthly_price . ' ' . $module->yearly_per_monthly_special_price]) !!}
@else
{!! trans('modules.if_paid_year', ['price' => $module->yearly_per_monthly_price]) !!}
@endif
* {!! trans('modules.information_monthly') !!}
@else
{{ trans('modules.free') }}
@endif