table-tabs.blade.php
15 lines
| 1 | @php /** @var array $tables */ @endphp |
| 2 | @php /** @var string $active */ @endphp |
| 3 | |
| 4 | <ol class="examiner-table-tabs"><?php |
| 5 | foreach ($tables as $table) : ?> |
| 6 | <li> |
| 7 | <button data-table-type="<?php echo esc_attr($table['table_type']); ?>" |
| 8 | data-action="report#changeTable" |
| 9 | disabled="disabled" |
| 10 | class="examiner-table-tab <?php echo $table['table_type'] === $active ? 'active' : ''; ?>" |
| 11 | ><?php echo iawp_render('icons.' . $table['table_type']); ?> <?php echo esc_html($table['name']); ?></button> |
| 12 | </li><?php |
| 13 | endforeach; ?> |
| 14 | </ol> |
| 15 |