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

15 lines
302 B
PHP

<?php
namespace App\Filament\Pages;
use Filament\Pages\Page;
class RunCommand extends Page
{
protected static ?string $navigationIcon = 'heroicon-o-document-text';
protected static string $view = 'filament.pages.run-command';
protected static bool $shouldRegisterNavigation = false;
}