Show apps special price
This commit is contained in:
@@ -63,9 +63,14 @@
|
|||||||
<div style="margin: 10px; font-size: 24px;">
|
<div style="margin: 10px; font-size: 24px;">
|
||||||
@if ($module->price == '0.0000')
|
@if ($module->price == '0.0000')
|
||||||
{{ trans('modules.free') }}
|
{{ trans('modules.free') }}
|
||||||
|
@else
|
||||||
|
@if (isset($module->special_price))
|
||||||
|
<del>{{ $module->price }}</del>
|
||||||
|
{{ $module->special_price }}
|
||||||
@else
|
@else
|
||||||
{{ $module->price }}
|
{{ $module->price }}
|
||||||
@endif
|
@endif
|
||||||
|
@endif
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -24,9 +24,14 @@
|
|||||||
<div class="pull-right">
|
<div class="pull-right">
|
||||||
@if ($module->price == '0.0000')
|
@if ($module->price == '0.0000')
|
||||||
{{ trans('modules.free') }}
|
{{ trans('modules.free') }}
|
||||||
|
@else
|
||||||
|
@if (isset($module->special_price))
|
||||||
|
<del>{{ $module->price }}</del>
|
||||||
|
{{ $module->special_price }}
|
||||||
@else
|
@else
|
||||||
{{ $module->price }}
|
{{ $module->price }}
|
||||||
@endif
|
@endif
|
||||||
|
@endif
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<!-- /.box-footer -->
|
<!-- /.box-footer -->
|
||||||
|
|||||||
Reference in New Issue
Block a user