21 lines
437 B
PHP
21 lines
437 B
PHP
<?php
|
|
|
|
namespace App\Filament\Widgets;
|
|
|
|
use App\Filament\Support\SystemNotification;
|
|
use Filament\Widgets\Widget;
|
|
|
|
class SupportWidget extends Widget
|
|
{
|
|
protected static ?int $sort = 0;
|
|
|
|
protected int|string|array $columnSpan = 'full';
|
|
|
|
protected string $view = 'filament.widgets.support-widget';
|
|
|
|
public function getHeading(): string
|
|
{
|
|
return SystemNotification::getByKey('labels.help_center.title');
|
|
}
|
|
}
|