@extends('layouts.app') @section('title', 'Bug Detection System') @section('breadcrumb') @endsection @section('content')

Bug Detection System

Monitor dan kelola bug dari semua fitur aplikasi

Report Bug Analytics

{{ $stats['total'] }}

Total Bugs

{{ $stats['open'] }}

Open Bugs

{{ $stats['critical'] }}

Critical

{{ $stats['high'] }}

High Priority

{{ $stats['resolved_today'] }}

Resolved Today
Bug Reports ({{ $bugs->total() }} total)
@if($bugs->count() > 0)
@foreach($bugs as $bug) @endforeach
Title Severity Status Type Module Count Last Occurred Actions
{{ Str::limit($bug->title, 40) }}
{{ Str::limit($bug->description, 60) }}
{{ ucfirst($bug->severity) }} {{ str_replace('_', ' ', ucfirst($bug->status)) }} {{ ucfirst($bug->type) }} {{ $bug->module ?? 'N/A' }} {{ $bug->occurrence_count }}
{{ $bug->last_occurred_at ? $bug->last_occurred_at->diffForHumans() : $bug->created_at->diffForHumans() }}
{{ $bug->created_at->format('d/m/Y H:i') }}
@if($bug->status !== 'resolved') @endif
Showing {{ $bugs->firstItem() }} to {{ $bugs->lastItem() }} of {{ $bugs->total() }} results
{{ $bugs->appends(request()->query())->links() }}
@else
No bugs found

Great! Your system seems to be running smoothly.

@endif
@endsection @push('styles') @endpush @push('scripts') @endpush