Просмотр поста

.
galtsev.t
<?php exit;
# Hasan Mallick (15.09.2022 / 04:06)
I need the latest forum code with paging. that will show all new posts on the homepage.
Add to HomepageController
module_lib_loader('forum');
$last_topics = ForumTopic::query()->orderBy('last_post_date', 'DESC')->paginate(10);
$this->render->addData(
    [
        'last_topics' => $last_topics,
        'pagination' => $last_topics->render(),
    ]
);

Add to template
<?php foreach ($last_topics as $forum_topic): ?>
<div class="card m-2">
    <div class="card-body">
        <?= $forum_topic['name'] ?>
    </div>
</div>
<?php endforeach ?>
<?php if (! empty($pagination)): ?>
    <div class="mt-4"><?= $pagination ?></div>
<?php endif; ?>