shoppingmallv2/app/Views/front/order/view.php
최준흠git config git config --helpgit config --global user.name 최준흠 be3b33fbbe shoppingmallv2 init..
2023-08-07 21:12:10 +09:00

19 lines
679 B
PHP

<?= $this->extend('layouts/front') ?>
<?= $this->section('content') ?>
<link href="/css/front/content.css" media="screen" rel="stylesheet" type="text/css" />
<div id="content">
<table class="form table table-bordered table-striped">
<tbody>
<?php foreach ($viewDatas['fields'] as $field) : ?>
<tr></tr>
<td class="label"><?= getFieldLabel_OrderHelper($field, $viewDatas) ?></td>
<td class="column">
<?= getFieldView_OrderHelper($field, $viewDatas['entity'], $viewDatas) ?>
<?= validation_show_error($field); ?>
</td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
</div>
<?= $this->endSection() ?>