<tbody>
<?php foreach ($members as $member): ?>
<tr>
<td><?= $this->Number->format($member->id) ?></td>
<td><?= __($member->name) ?></td>
<td class="actions">
<?= $this->Html->link(__('View'),
['action' => 'view', $member->id]) ?>
<?= $this->Html->link(__('Edit'),
['action' => 'edit', $member->id]) ?>
<?= $this->Form->postLink(__('Delete'), ['action' => 'delete',
$member->id],
['confirm' => __('Are you sure you want to delete # {0}?',
$member->id)]) ?>
</td>
</tr>
<?php endforeach; ?>
</tbody>
<?= $this->Html->link(__('View'), ['action' => 'view',
$member->id]) ?>
※リストが表示されない場合
AddBlockなどの広告ブロックツールがONになっているとリストなどが表示されない場合があります。これらのツールをOFFにしてみてください。
public function index() { $this->set('members', $this->paginate($this->Members)); $this->set('_serialize', ['members']); }
<< 前へ | 次へ >> |