CakeAccounting/templates/DeExternalAccounts/add.php

30 lines
1022 B
PHP
Raw Normal View History

2025-08-09 21:07:39 +00:00
<?php
/**
* @var \App\View\AppView $this
* @var \Cake\Datasource\EntityInterface $deExternalAccount
*/
?>
<div class="row">
<aside class="column">
<div class="side-nav">
<h4 class="heading"><?= __('Actions') ?></h4>
<?= $this->Html->link(__('List De External Accounts'), ['action' => 'index'], ['class' => 'side-nav-item']) ?>
</div>
</aside>
<div class="column column-80">
<div class="deExternalAccounts form content">
<?= $this->Form->create($deExternalAccount) ?>
<fieldset>
<legend><?= __('Add De External Account') ?></legend>
<?php
echo $this->Form->control('entity_type_code');
echo $this->Form->control('related_model');
echo $this->Form->control('related_model_fk');
?>
</fieldset>
<?= $this->Form->button(__('Submit')) ?>
<?= $this->Form->end() ?>
</div>
</div>
</div>