@if ($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)
        
            
            @if ($paid->data)
                @foreach ($paid->data as $module)
                    @include('partials.modules.item')
                @endforeach
            @else
                @include('partials.modules.no_apps')
            @endif
        
        @endif
        @if ($new)
        
            
            @if ($new->data)
                @foreach ($new->data as $module)
                    @include('partials.modules.item')
                @endforeach
            @else
                @include('partials.modules.no_apps')
            @endif
        
        @endif
        @if ($free)
        
            
            @if ($free->data)
                @foreach ($free->data as $module)
                    @include('partials.modules.item')
                @endforeach
            @else
                @include('partials.modules.no_apps')
            @endif
        
        @endif