shoppingmallv2/app/Views/admin/boardconfig/view.php
2023-07-31 15:53:35 +09:00

16 lines
578 B
PHP

<?= $this->extend('layouts/admin') ?>
<?= $this->section('content') ?>
<div class="content">
<table class="form table table-bordered table-hover table-striped">
<?php foreach ($fields as $field) : ?>
<tr>
<td class="label"><?= getFieldLabel_BoardConfigHelper($field, $fieldRules) ?></td>
<td class="column">
<?= getFieldView_BoardConfigHelper($field, $entity, $fieldFilters, $fieldFormOptions) ?>
<?= validation_show_error($field); ?>
</td>
</tr>
<?php endforeach; ?>
</table>
</div>
<?= $this->endSection() ?>