我正在尝试创建一个删除和编辑按钮,以便我可以从列表中获取数据。请问我怎么做。在laravel 5.4.Below是应用程序和按钮代码的接口。帮助编辑和删除如何工作。
<td><a class="btn btn-primary btn-sm" href="#">
<i class="fa fa-pencil-square-o fa-lg" aria-hidden="true"></i> Edit</a> <!-- </td> -->
<!-- <td> --><a class="btn btn-danger btn-sm" href="{{route('contacts.index', $contacts->id)}}" onclick="return confirm('Are you sure to delete the contact');">
<i class="fa fa-trash-o fa-lg" aria-hidden="true"></i> Delete</a></td>
</tr>