@php $overall = $pipelineHealth->overall; $badgeClass = match ($overall) { 'ok' => 'bg-success', 'warning' => 'bg-warning text-dark', 'problem' => 'bg-danger', 'paused' => 'bg-secondary', default => 'bg-secondary', }; $overallLabel = match ($overall) { 'ok' => 'Funcionando', 'warning' => 'Atenção', 'problem' => 'Problema', 'paused' => 'Pausado', default => '—', }; @endphp
Status do pipeline
{{ $pipelineHealth->summary }}
URLs ML/Amazon pendentes há mais de {{ $pipelineHealth->stuckPendingThresholdMinutes }} min indicam fila travada (ajustável em Configurações → Sistema). @if(auth()->user()->isWebmasterOrAdmin() && auth()->user()->hasPermission('settings.view')) Alterar limite @endif