{{-- Command Input Form --}} Command Input Enter your command below. Artisan commands will be automatically detected.
{{ $this->form }}
Execute Command @if ($output || $error) Clear Output @endif
{{-- Command Output --}} @if ($output || $error || $executionTime) Command Output @if ($executionTime) (Executed in {{ number_format($executionTime, 2) }}ms) @endif @if ($backgroundLogPath ?? null)
View / refresh log file
@endif @if ($output)

Standard Output:

{{ $output }}
@endif @if ($error)

Error Output:

{{ $error }}
@endif
@endif {{-- Command History --}} @if (count($commandHistory) > 0) Command History Recent commands you've executed. Click to re-run.
Clear History
@foreach ($commandHistory as $index => $historyItem)
{{ $historyItem['command'] }} {{ $historyItem['timestamp'] }} @if ($historyItem['execution_time']) ({{ number_format($historyItem['execution_time'], 2) }}ms) @endif
@if (!empty($historyItem['error']))
Error: {{ \Illuminate\Support\Str::limit($historyItem['error'], 100) }}
@endif @if (!empty($historyItem['output']) && $historyItem['output'] !== '(No output)')
Output: {{ \Illuminate\Support\Str::limit($historyItem['output'], 100) }}
@endif
Re-run
@endforeach
@endif