{{ data_get_str($application, 'name')->limit(10) }} > Deployment | Coolify
@php $deploymentStatus = data_get($application_deployment_queue, 'status'); $deploymentStatusLabel = $deploymentStatus === 'in_progress' ? 'In progress' : Str::headline((string) $deploymentStatus); $deploymentStatusType = match ($deploymentStatus) { 'finished' => 'success', 'failed' => 'error', 'queued', 'in_progress' => 'warning', default => 'neutral', }; @endphp
@can('update', $application) @endcan
@can('update', $application) @endcan
No matches found.
@forelse ($this->logLines as $line) @php $lineContent = (isset($line['command']) && $line['command'] ? '[CMD]: ' : '') . trim($line['line']); $searchableContent = $line['timestamp'] . ' ' . $lineContent; @endphp
isset($line['command']) && $line['command'], 'log-line logs-viewer-line', ])> {{ $line['timestamp'] }} $line['hidden'], 'text-red-500' => $line['stderr'], 'font-bold' => isset($line['command']) && $line['command'], 'logs-viewer-line-text', ])>{{ $lineContent }}
@empty No logs yet. @endforelse