@extends('layouts.app') @section('title', isset($bug) ? 'Edit Intelligence Failure' : 'Architect Bug Report') @push('styles') @endpush @section('content') @include('components.page-header', [ 'title' => isset($bug) ? 'Modify Defect Intelligence' : 'Report Structural Failure', 'description' => 'Document technical anomalies, reproduction steps, and environmental telemetry for engineering resolution.', 'breadcrumbs' => ['Home' => route('admin.dashboard'), 'Bug Tracking' => route('bugs.index'), 'Editor' => '#'], 'actions' => ' Back to Fleet' ])
@csrf @if(isset($bug)) @method('PUT') @endif

Technical Specification

PNG, JPG, OR HEIC UP TO 5MB.

@if(isset($bug) && $bug->screenshot_path)
@endif
@if(isset($bug))

Failure History Timeline

@forelse($bug->histories()->with('actor')->latest()->get() as $h)
{{ strtoupper(str_replace('_',' ',$h->action)) }} {{ $h->created_at->format('M d, Y • H:i') }}
{{ $h->actor?->name ?? 'System' }} transitioned from {{ $h->from_status ?? 'INITIAL' }}{{ strtoupper($h->to_status) }}
@if($h->comment)
"{{ $h->comment }}"
@endif
@empty

No historical anomalies recorded.

@endforelse
@endif

Governance

@endsection