App Store price add prefix and suffix

This commit is contained in:
cuneytsenturk
2018-12-22 18:04:16 +03:00
parent 4eb8ba2f50
commit 7f2ee295c8
4 changed files with 13 additions and 1 deletions

View File

@ -146,12 +146,14 @@
@if ($module->price == '0.0000')
{{ trans('modules.free') }}
@else
{!! $module->price_prefix !!}
@if (isset($module->special_price))
<del>{{ $module->price }}</del>
{{ $module->special_price }}
@else
{{ $module->price }}
@endif
{!! $module->price_suffix !!}
@endif
</div>
</div>