Slots Content

After the slots are generated from app/Http/Livewire/Articles/Edit@updateArticleAdsPositions the ads need to be properly distributed through-out these slots. The code currently responsible for this is:
app/Helpers/ProjectAdSlotsGenerator.php

This code is executed every time an article is being opened on some integration and is being called in FrontEndController@renderArticleHtml

$this->view_params['article']['html'] = (
    new ProjectAdSlotsGenerator($this->view_params)
)->placeAdWidgets();

So the entry point for the ads distribution across the slots is the placeAdWidgets() method.