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">
|
2017-11-01 18:23:50 +03:00
|
|
|
<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">
|
2017-11-01 18:23:50 +03:00
|
|
|
<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>
|