35 lines
1.2 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">
2017-11-01 22:15:25 +03:00
<h3 class="box-title"><a href="{{ url('apps/' . $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 22:15:25 +03:00
<a href="{{ url('apps/' . $module->slug) }}">
2017-11-03 09:42:46 +03:00
@foreach ($module->files as $file)
2017-11-03 09:45:54 +03:00
@if (($file->media_type == 'image') && ($file->pivot->zone == 'thumbnail'))
<img src="{{ $file->path_string }}" alt="{{ $module->name }}" class="item-image">
2017-11-03 09:42:46 +03:00
@endif
@endforeach
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
2018-04-26 13:21:43 +03:00
{{ $module->price }}
2017-09-14 22:21:00 +03:00
@endif
</div>
</div>
<!-- /.box-footer -->
</div>
<!-- /.box -->
</div>