excel_table.blade.php 577 B

12345678910111213141516171819202122232425
  1. <table>
  2. <thead>
  3. @if(count($header) > 0)
  4. <tr>
  5. @foreach($header as $head)
  6. <th rowspan="{{ $head['row'] }}" colspan="{{ $head['col'] }}">{{ $head['title'] }}</th>
  7. @endforeach
  8. </tr>
  9. @endif
  10. <tr>
  11. @foreach($titles as $title)
  12. <th>{{ $title }}</th>
  13. @endforeach
  14. </tr>
  15. </thead>
  16. <tbody>
  17. @foreach($items as $item)
  18. <tr>
  19. @foreach($item as $col)
  20. <td>{{ $col }}</td>
  21. @endforeach
  22. </tr>
  23. @endforeach
  24. </tbody>
  25. </table>