Module review and home page syntax fixed

This commit is contained in:
cuneytsenturk
2018-12-11 17:21:11 +03:00
parent 5134037035
commit f456dd3d43
2 changed files with 34 additions and 26 deletions

View File

@ -11,6 +11,7 @@
@include('partials.modules.bar')
<div class="row">
@if ($paid)
<div class="col-md-12">
<div class="content-header no-padding-left">
<h3>{{ trans('modules.top_paid') }}</h3>
@ -24,7 +25,9 @@
@include('partials.modules.no_apps')
@endif
</div>
@endif
@if ($new)
<div class="col-md-12">
<div class="content-header no-padding-left">
<h3>{{ trans('modules.new') }}</h3>
@ -38,7 +41,9 @@
@include('partials.modules.no_apps')
@endif
</div>
@endif
@if ($free)
<div class="col-md-12">
<div class="content-header no-padding-left">
<h3>{{ trans('modules.top_free') }}</h3>
@ -52,5 +57,6 @@
@include('partials.modules.no_apps')
@endif
</div>
@endif
</div>
@endsection