view.ctp
1.02 KB
<nav class="large-3 medium-4 columns" id="actions-sidebar">
<ul class="side-nav">
<li class="heading"><?= __('Actions') ?></li>
<li><?= $this->Html->link(__('Edit Sur Category'), ['action' => 'edit', $surCategory->id]) ?> </li>
<li><?= $this->Form->postLink(__('Delete Sur Category'), ['action' => 'delete', $surCategory->id], ['confirm' => __('Are you sure you want to delete # {0}?', $surCategory->id)]) ?> </li>
<li><?= $this->Html->link(__('List Sur Categories'), ['action' => 'index']) ?> </li>
<li><?= $this->Html->link(__('New Sur Category'), ['action' => 'add']) ?> </li>
</ul>
</nav>
<div class="surCategories view large-9 medium-8 columns content">
<h3><?= h($surCategory->id) ?></h3>
<table class="vertical-table">
<tr>
<th><?= __('Nom') ?></th>
<td><?= h($surCategory->nom) ?></td>
</tr>
<tr>
<th><?= __('Id') ?></th>
<td><?= $this->Number->format($surCategory->id) ?></td>
</tr>
</table>
</div>