MartinOscar d03366cf3d
Enhance Node health column (#1023)
* Make sure we are talking to a `Pelican Wings` instance

* Enforce matching `token_id`

* Refactor `NodeSystemInformation`
2025-02-22 21:44:49 +01:00

20 lines
372 B
PHP

<?php
namespace App\Filament\Components\Tables\Columns;
use Filament\Tables\Columns\IconColumn;
class NodeHealthColumn extends IconColumn
{
protected string $view = 'livewire.columns.version-column';
protected function setUp(): void
{
parent::setUp();
$this->label(trans('admin/node.table.health'));
$this->alignCenter();
}
}