2024-05-01 14:48:05 +00:00
|
|
|
<?= $this->extend('_layout') ?>
|
|
|
|
|
|
|
|
<?= $this->section('title') ?>
|
2024-05-09 17:55:41 +00:00
|
|
|
<?= lang('Plugins.installed') ?>
|
2024-05-01 14:48:05 +00:00
|
|
|
<?= $this->endSection() ?>
|
|
|
|
|
|
|
|
<?= $this->section('pageTitle') ?>
|
2024-05-09 17:55:41 +00:00
|
|
|
<?= lang('Plugins.installed') . ' (' . $total . ')' ?>
|
2024-05-01 14:48:05 +00:00
|
|
|
<?= $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() ?>
|