CakeAccounting/templates/DeAccountStatements/edit.php

34 lines
1.2 KiB
PHP
Raw Permalink Normal View History

2025-08-09 21:07:39 +00:00
<?php
/**
* @var \App\View\AppView $this
* @var \Cake\Datasource\EntityInterface $deAccountStatement
* @var string[]|\Cake\Collection\CollectionInterface $deAccounts
*/
?>
<div class="row">
<aside class="column">
<div class="side-nav">
<h4 class="heading"><?= __('Actions') ?></h4>
<?= $this->Form->postLink(
__('Delete'),
['action' => 'delete', $deAccountStatement->account_number],
['confirm' => __('Are you sure you want to delete # {0}?', $deAccountStatement->account_number), 'class' => 'side-nav-item']
) ?>
<?= $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><?= __('Edit De Account Statement') ?></legend>
<?php
echo $this->Form->control('closing_balance');
?>
</fieldset>
<?= $this->Form->button(__('Submit')) ?>
<?= $this->Form->end() ?>
</div>
</div>
</div>