Files
einundzwanzig-portal/resources/views/exports/meetupEventsAttendees.blade.php
HolgerHatGarKeineNode 69c3ade296 add attendees export
2023-03-16 15:08:42 +01:00

17 lines
284 B
PHP

<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>