mirror of
https://github.com/kuaifan/dootask.git
synced 2025-12-11 18:42:54 +00:00
26 lines
560 B
PHP
Executable File
26 lines
560 B
PHP
Executable File
<table style="border-collapse: collapse; width: 100%;" border="1">
|
|
<thead>
|
|
<tr>
|
|
@foreach($labels as $label)
|
|
<th><strong>{{ $label }}</strong></th>
|
|
@endforeach
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@forelse($datas as $data)
|
|
<tr>
|
|
@foreach($data as $item)
|
|
<td>{!! $item !!}</td>
|
|
@endforeach
|
|
</tr>
|
|
@empty
|
|
<tr>
|
|
@foreach($labels as $label)
|
|
<td> </td>
|
|
@endforeach
|
|
</tr>
|
|
@endforelse
|
|
</tbody>
|
|
</table>
|
|
|