19 lines
486 B
PHP
Executable File
19 lines
486 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Filament\Pages;
|
|
|
|
use Filament\Pages\Page;
|
|
|
|
class OtherFunctions extends Page
|
|
{
|
|
protected static ?int $navigationSort = 20;
|
|
protected static ?string $title = '系统设置';
|
|
protected static ?string $navigationLabel = '系统设置';
|
|
protected static string $view = 'filament.pages.other-functions';
|
|
|
|
public static function getNavigationIcon(): string
|
|
{
|
|
return 'heroicon-o-cog'; // ✅ 自订你喜欢的图标,例如齿轮
|
|
}
|
|
}
|