2024-12-17 15:11:45 +00:00

17 lines
401 B
PHP

<?= $this->extend('_layout') ?>
<?= $this->section('pageTitle') ?>
<?= lang('Plugins.installed') . ' (' . $total . ')' ?>
<?= $this->endSection() ?>
<?= $this->section('content') ?>
<div class="grid gap-4 mb-4 grid-cols-plugins">
<?php foreach ($plugins as $plugin) {
echo view('plugins/_plugin', [
'plugin' => $plugin,
]);
} ?>
</div>
<?= $pager_links ?>
<?= $this->endSection() ?>