|
|
@@ -425,16 +425,16 @@ class TestController extends BaseController
|
|
|
$new[] = ['name' => $name, 'status' => $group];
|
|
|
}
|
|
|
if (!empty($new)) {
|
|
|
- echo "<table>";
|
|
|
foreach ($new as $info) {
|
|
|
+ echo "<table style='font-size:20px;'>";
|
|
|
echo "<tr><td>{$info['name']}</td></tr>";
|
|
|
if (!empty($info['status'])) {
|
|
|
foreach ($info['status'] as $item) {
|
|
|
echo "<tr><td>{$item}</td></tr>";
|
|
|
}
|
|
|
}
|
|
|
+ echo "</table>";
|
|
|
}
|
|
|
- echo "</table>";
|
|
|
}
|
|
|
}
|
|
|
|