apps style

This commit is contained in:
denisdulici
2017-10-28 01:23:44 +03:00
parent d92887e479
commit 1ed02931b9
6 changed files with 39 additions and 52 deletions

View File

@@ -19,14 +19,14 @@
<link rel="stylesheet" href="{{ asset('vendor/almasaeed2010/adminlte/dist/css/skins/skin-green-light.min.css') }}">
@else
<link rel="stylesheet" href="{{ asset('vendor/almasaeed2010/adminlte/dist/css/skins/skin-black.min.css') }}">
<link rel="stylesheet" href="{{ asset('public/css/skin-black.css?v=1.0') }}">
<link rel="stylesheet" href="{{ asset('public/css/skin-black.css?v=1.0.7') }}">
@endif
<!-- Select2 -->
<link rel="stylesheet" href="{{ asset('vendor/almasaeed2010/adminlte/plugins/select2/select2.min.css') }}">
<!-- App style -->
<link rel="stylesheet" href="{{ asset('public/css/app.css?v=1.0') }}">
<link rel="stylesheet" href="{{ asset('public/css/akaunting-green.css?v=1.0') }}">
<link rel="stylesheet" href="{{ asset('public/css/addons.css?v=1.0') }}">
<link rel="stylesheet" href="{{ asset('public/css/app.css?v=1.0.7') }}">
<link rel="stylesheet" href="{{ asset('public/css/akaunting-green.css?v=1.0.7') }}">
<link rel="stylesheet" href="{{ asset('public/css/modules.css?v=1.0.7') }}">
<link rel="shortcut icon" href="{{ asset('public/img/favicon.ico') }}">

View File

@@ -6,24 +6,22 @@
</div>
<!-- /.box-header -->
<div class="box-body">
<div class="box-body text-center">
<a href="{{ url('modules/item/' . $module->slug) }}">
<img src="{{ $module->files[0]->path_string }}" alt="{{ $module->name }}" width="280" height="140">
<br>
{!! str_limit($module->description, 70) !!}
<img src="{{ $module->files[0]->path_string }}" alt="{{ $module->name }}" class="item-image">
</a>
</div>
<!-- /.box-body -->
<div class="box-footer">
<div class="pull-left">
{{ $module->category->name }}
{{ $module->vendor_name }}
</div>
<div class="pull-right">
@if ($module->price == '0.0000')
{{ trans('modules.free') }}
@else
{{ $module->price }}
{{ $module->price . ' / month' }}
@endif
</div>
</div>