We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 021b6dc commit 4427305Copy full SHA for 4427305
app/views/countries/index.php
@@ -8,6 +8,8 @@
8
<th>Hoofdstad</th>
9
<th>Continent</th>
10
<th>Aantal inwoners</th>
11
+ <th></th>
12
13
</tr>
14
</thead>
15
<tbody>
@@ -20,6 +22,12 @@
20
22
<td>{$country->capitalCity}</td>
21
23
<td>{$country->continent}</td>
24
<td>{$country->population}</td>
25
+ <td><a href='./countries/edit?id={$country->id}'>
26
+ Edit
27
+ </a></td>
28
+ <td><a href='./countries/delete?id={$country->id}'>
29
+ Delete
30
31
32
";
33
}
0 commit comments