mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-20 04:04:45 +02:00
18 lines
315 B
PHP
18 lines
315 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->alignCenter();
|
|
}
|
|
}
|