2017-09-14 22:21:00 +03:00
|
|
|
@extends('layouts.modules')
|
|
|
|
|
|
|
|
@section('title', trans_choice('general.modules', 2))
|
|
|
|
|
2018-04-25 11:31:49 +03:00
|
|
|
@section('new_button')
|
|
|
|
<span class="new-button"><a href="{{ url('apps/token/create') }}" class="btn btn-success btn-sm"><span class="fa fa-key"></span> {{ trans('modules.api_token') }}</a></span>
|
|
|
|
@endsection
|
|
|
|
|
2017-09-14 22:21:00 +03:00
|
|
|
@section('content')
|
|
|
|
@include('partials.modules.bar')
|
|
|
|
|
2017-11-29 16:37:04 +03:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-12">
|
|
|
|
<div class="content-header no-padding-left">
|
|
|
|
<h3>{{ trans('modules.top_paid') }}</h3>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
@foreach ($paid as $module)
|
|
|
|
@include('partials.modules.item')
|
|
|
|
@endforeach
|
2017-09-14 22:21:00 +03:00
|
|
|
</div>
|
|
|
|
|
2017-12-06 15:57:38 +03:00
|
|
|
<div class="col-md-12">
|
2017-11-29 16:37:04 +03:00
|
|
|
<div class="content-header no-padding-left">
|
|
|
|
<h3>{{ trans('modules.new') }}</h3>
|
|
|
|
</div>
|
2017-09-14 22:21:00 +03:00
|
|
|
|
2017-11-29 16:37:04 +03:00
|
|
|
@foreach ($new as $module)
|
|
|
|
@include('partials.modules.item')
|
|
|
|
@endforeach
|
|
|
|
</div>
|
2017-09-14 22:21:00 +03:00
|
|
|
|
2017-12-06 15:57:38 +03:00
|
|
|
<div class="col-md-12">
|
2017-11-29 16:37:04 +03:00
|
|
|
<div class="content-header no-padding-left">
|
|
|
|
<h3>{{ trans('modules.top_free') }}</h3>
|
|
|
|
</div>
|
2017-09-14 22:21:00 +03:00
|
|
|
|
2017-11-29 16:37:04 +03:00
|
|
|
@foreach ($free as $module)
|
|
|
|
@include('partials.modules.item')
|
|
|
|
@endforeach
|
|
|
|
</div>
|
2017-09-14 22:21:00 +03:00
|
|
|
</div>
|
|
|
|
@endsection
|