Files
nexusphp/app/Filament/Pages/RunCommand.php
T

15 lines
315 B
PHP
Raw Normal View History

<?php
namespace App\Filament\Pages;
use Filament\Pages\Page;
class RunCommand extends Page
{
2025-09-21 18:07:38 +08:00
protected static string | \BackedEnum | null $navigationIcon = 'heroicon-o-document-text';
2025-09-21 18:07:38 +08:00
protected string $view = 'filament.pages.run-command';
protected static bool $shouldRegisterNavigation = false;
}