mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-14 12:30:49 +08:00
15 lines
315 B
PHP
15 lines
315 B
PHP
<?php
|
|
|
|
namespace App\Filament\Pages;
|
|
|
|
use Filament\Pages\Page;
|
|
|
|
class RunCommand extends Page
|
|
{
|
|
protected static string | \BackedEnum | null $navigationIcon = 'heroicon-o-document-text';
|
|
|
|
protected string $view = 'filament.pages.run-command';
|
|
protected static bool $shouldRegisterNavigation = false;
|
|
|
|
}
|