Created
November 9, 2019 12:37
-
-
Save paulodutra/7158e1c9657accf221be453869b8fd8e to your computer and use it in GitHub Desktop.
2-view-listagem-clients-yii2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use yii\helpers\Url; | |
/* @var $this yii\web\View */ | |
?> | |
<h1 class="text text-center">Clientes</h1> | |
<a href="<?= Url::to(['clients/create']);?>" class="btn btn-success">Novo Cliente</a> | |
<table class="table"> | |
<thead> | |
<tr> | |
<th>#</th> | |
<th>Nome</th> | |
<th>Email</th> | |
<th>-</th> | |
</tr> | |
</thead> | |
<tbody> | |
<?php foreach($clients as $client): ?> | |
<tr> | |
<td><?= $client->id; ?></td> | |
<td><?= $client->name; ?></td> | |
<td><?= $client->email; ?></td> | |
<td> | |
<a href="<?= Url::to(['clients/update', 'id' => $client->id]);?>">Editar</a> | | |
<a href="<?= Url::to(['clients/delete', 'id' => $client->id]);?>">Excluir</a> | |
</td> | |
</tr> | |
<?php endforeach; ?> | |
</tbody> | |
</table> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment