Show apps special price

This commit is contained in:
cuneytsenturk
2018-05-12 13:44:07 +03:00
parent 170cf883d8
commit 651194cd56
2 changed files with 12 additions and 2 deletions

View File

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

View File

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