CakeAccounting/templates/DeAccountStatements/add.php

29 lines
961 B
PHP
Raw Normal View History

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