@extends('layouts.app') @section('title', 'QA Intelligence Center') @push('styles') @endpush @section('content') @php $actionsHtml = ' Report Critical Failure'; @endphp @include('components.page-header', [ 'title' => 'Quality Operations Command', 'description' => 'Monitor bug lifecycle analytics, regression health, and engineering stability scores across all production modules.', 'breadcrumbs' => ['Home' => route('admin.dashboard'), 'QA' => '#'], 'actions' => $actionsHtml ])
| Failure Intelligence | Portfolio | Severity | Current State | Assignment |
|---|---|---|---|---|
|
{{ $bug->title }}
#{{ $bug->id }} • Reported by {{ $bug->reporter->name }}
|
{{ $bug->project->name }} | @php $sevClass = $bug->severity == 'critical' ? 'badge-low' : ($bug->severity == 'high' ? 'badge-sms' : 'badge-email'); $sevStyle = $bug->severity == 'critical' ? 'background: rgba(244, 63, 94, 0.1); color: #f43f5e; border-color: rgba(244, 63, 94, 0.2);' : ''; @endphp {{ strtoupper($bug->severity) }} | @php $statusClass = $bug->status == 'fixed' ? 'badge-whatsapp' : ($bug->status == 'open' ? 'badge-low' : 'badge-email'); @endphp {{ ucfirst($bug->status) }} |
{{ $bug->assignee->name ?? 'SYSTEM' }}
{{ substr($bug->assignee->name ?? '?', 0, 1) }}
|
Modules with abnormally high failure rates requiring immediate engineering review.