add attendees export

This commit is contained in:
HolgerHatGarKeineNode
2023-03-16 15:08:42 +01:00
parent fae97b39b6
commit 69c3ade296
20 changed files with 784 additions and 141 deletions

View File

@@ -0,0 +1,16 @@
<table>
<thead>
<tr>
<th>Name</th>
<th>Status</th>
</tr>
</thead>
<tbody>
@foreach($attendees as $a)
<tr>
<td>{{ $a['name'] }}</td>
<td>{{ $a['status'] }}</td>
</tr>
@endforeach
</tbody>
</table>