mirror of
https://github.com/getformwork/formwork.git
synced 2025-02-22 16:56:50 +01:00
6 lines
198 B
PHP
6 lines
198 B
PHP
<?php foreach ($fields as $field): ?>
|
|
<?php if ($field->isVisible()): ?>
|
|
<?php $this->insert('fields.' . $field->type(), ['field' => $field]) ?>
|
|
<?php endif; ?>
|
|
<?php endforeach; ?>
|