Files
vapor-po/Resources/Views/employees/table.leaf

24 lines
492 B
Plaintext

<table id="employee-table">
<thead>
<tr>
<th>Name</th>
<th>Active</th>
<th>
<a href="javascript:void(0)"
hx-get="employees/form"
hx-target="#employee-form"
hx-on::after-request="toggleContent('form')"
class="btn-add"
>
&plus;
</a>
</th>
</tr>
</thead>
<tbody>
#for(employee in employees):
#extend("employees/table-row", employee)
#endfor
</tbody>
</table>