31 lines
1.0 KiB
PHP
Raw Normal View History

2017-09-14 22:21:00 +03:00
<div class="col-md-3 no-padding-left">
<div class="box box-success">
<div class="box-header with-border">
<h3 class="box-title"><a href="{{ url('modules/' . $module->slug) }}">{{ $module->name }}</a></h3>
2017-09-14 22:21:00 +03:00
<!-- /.box-tools -->
</div>
<!-- /.box-header -->
2017-10-28 01:23:44 +03:00
<div class="box-body text-center">
<a href="{{ url('modules/' . $module->slug) }}">
2017-10-28 01:23:44 +03:00
<img src="{{ $module->files[0]->path_string }}" alt="{{ $module->name }}" class="item-image">
2017-09-14 22:21:00 +03:00
</a>
</div>
<!-- /.box-body -->
<div class="box-footer">
<div class="pull-left">
2017-10-28 01:23:44 +03:00
{{ $module->vendor_name }}
2017-09-14 22:21:00 +03:00
</div>
<div class="pull-right">
@if ($module->price == '0.0000')
{{ trans('modules.free') }}
@else
2017-10-28 01:23:44 +03:00
{{ $module->price . ' / month' }}
2017-09-14 22:21:00 +03:00
@endif
</div>
</div>
<!-- /.box-footer -->
</div>
<!-- /.box -->
</div>