@extends('layouts.app') @section('title', 'Bericht: '.$report->title) @section('actions') @if ($report->isReady()) @can('download', $report) Herunterladen @endcan @endif @endsection @section('content')
Status
{{ $report->status }}
Kunde / Projekt
{{ $report->customer?->name }} · {{ $report->project?->name ?? '-' }}
Typ / Format
{{ $report->type }} · {{ strtoupper($report->format) }}
Erstellt von
{{ $report->creator?->name }} am {{ $report->created_at->format('d.m.Y H:i') }}
Erzeugt
{{ $report->generated_at?->format('d.m.Y H:i') ?? 'ausstehend' }}
Pruefsumme (SHA-256)
{{ $report->file_sha256 ?? '-' }}
Groesse
{{ $report->file_bytes ? number_format($report->file_bytes / 1024, 1).' KB' : '-' }}
Downloads
{{ $report->download_count }} (zuletzt {{ $report->last_downloaded_at?->format('d.m.Y H:i') ?? 'nie' }})
Beruecksichtigte Scans
{{ implode(', ', (array) $report->scan_job_ids) }}
@if ($report->error_message)
{{ $report->error_message }}
@endif
@endsection