@extends('layouts.modules')
@section('title', trans_choice('general.modules', 2))
@section('new_button')
    
    
@endsection
@section('content')
    @include('partials.modules.bar')
        @if ($pre_sale)
            
{{ trans('modules.pre_sale') }}
            
                @if ($pre_sale->data)
                    @foreach ($pre_sale->data as $module)
                        @include('partials.modules.pre_sale')
                    @endforeach
                @else
                    @include('partials.modules.no_apps')
                @endif
            
        @endif
        @if ($paid)
            {{ trans('modules.top_paid') }}
            
                @if ($paid->data)
                    @foreach ($paid->data as $module)
                        @include('partials.modules.item')
                    @endforeach
                @else
                    @include('partials.modules.no_apps')
                @endif
            
        @endif
        @if ($new)
            {{ trans('modules.new') }}
            
                @if ($new->data)
                    @foreach ($new->data as $module)
                        @include('partials.modules.item')
                    @endforeach
                @else
                    @include('partials.modules.no_apps')
                @endif
            
        @endif
        @if ($free)
            {{ trans('modules.top_free') }}
            
                @if ($free->data)
                    @foreach ($free->data as $module)
                        @include('partials.modules.item')
                    @endforeach
                @else
                    @include('partials.modules.no_apps')
                @endif
            
        @endif
@endsection
@push('scripts_start')
    
@endpush