view.ctp 408 Bytes

<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>