I need the latest forum code with paging. that will show all new posts on the homepage.
I need the latest forum code with paging. that will show all new posts on the homepage.
# Hasan Mallick (15.09.2022 / 04:06)Add to HomepageController
I need the latest forum code with paging. that will show all new posts on the homepage.
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(),
]
);<?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; ?> if i set my website not working can you set in files please.