shoppingmallv2/app/Views/admin/product/view.php
최준흠git config git config --helpgit config --global user.name 최준흠 a0c66ee3ec shoppingmallv2 init...
2023-08-04 23:19:19 +09:00

16 lines
573 B
PHP

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