Header.php
14 lines
| 1 | <?php |
| 2 | |
| 3 | namespace IAWP\Examiner; |
| 4 | |
| 5 | use IAWP\Tables; |
| 6 | /** @internal */ |
| 7 | class Header |
| 8 | { |
| 9 | public static function html(Tables\Table $table, $model) : string |
| 10 | { |
| 11 | return \IAWPSCOPED\iawp_blade()->run('examiner.header', ['type' => $table->id(), 'model' => $model, 'group' => $table->group()]); |
| 12 | } |
| 13 | } |
| 14 |