@extends('layouts.admin') @section('title', 'Job #' . $job->id . ' — Admin') @section('content')
{{ $job->site->domain ?? 'N/A' }}
Estado
{{ $job->status }}Progreso
{{ $job->progress }}%
Duración
@if($job->started_at && $job->finished_at) {{ $job->started_at->diffInSeconds($job->finished_at) }}s @else - @endif
Score General
{{ $scores['overall'] }}
Seguridad
{{ $scores['security'] }}
SEO
{{ $scores['seo'] }}
| Categoría | Severidad | Rule ID | Título | Recomendación |
|---|---|---|---|---|
| {{ $finding->category }} | @php $sevColors = ['critical' => 'red', 'high' => 'orange', 'medium' => 'yellow', 'low' => 'blue', 'info' => 'gray']; $sc = $sevColors[$finding->severity] ?? 'gray'; @endphp {{ $finding->severity }} | {{ $finding->rule_id }} | {{ $finding->title }} | {{ $finding->recommendation ?? '-' }} |
| Sin hallazgos | ||||
Error: {{ $job->error_code }} — {{ $job->error_detail }}