agrege listado de restaurante
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
<table *ngIf="restaurante">
|
||||
<tr>
|
||||
<td>id</td><td>nombre</td><td>creacion</td><td>modificacion</td>
|
||||
</tr>
|
||||
<tr *ngFor="let r of restaurante.data">
|
||||
<td>{{r.id}}</td>
|
||||
<td>{{r.nombre}}</td>
|
||||
<td>{{r['created_at']}}</td>
|
||||
<td>{{r['updated_at']}}</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
Reference in New Issue
Block a user