mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-13 06:56:48 +00:00
add attendees export
This commit is contained in:
16
resources/views/exports/meetupEventsAttendees.blade.php
Normal file
16
resources/views/exports/meetupEventsAttendees.blade.php
Normal 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>
|
||||
Reference in New Issue
Block a user