@extends('layouts.app') @section('title', 'Projekt: '.$project->name) @section('actions') @can(\App\Enums\Permission::PROJECT_MANAGE)Bearbeiten@endcan @endsection @section('content') @if ($problem = $project->authorizationProblem())
Ohne gültige Scanberechtigung ist in diesem Projekt kein Scan möglich.
{{ $problem }}
@endif

Scanberechtigung

Status
@if ($project->hasValidAuthorization())gültig @elsenicht gültig@endif
Referenz
{{ $project->authorization_reference ?: '–' }}
Bestätigt durch
{{ $project->authorizedBy?->name ?? '–' }} @if ($project->authorization_confirmed_at) am {{ $project->authorization_confirmed_at->format('d.m.Y H:i') }}@endif
Gültig bis
{{ $project->authorization_valid_until?->format('d.m.Y') ?? '–' }}
Umfang
{{ $project->scope_description ?: '–' }}
@can(\App\Enums\Permission::PROJECT_MANAGE)
@csrf
@if ($project->authorization_confirmed)
@csrf @method('DELETE')
@endif @endcan

Freigegebene Netze des Kunden

@forelse ($allowlist as $entry) @empty@endforelse
NetzBezeichnungGültig bisStatus
{{ $entry->cidr }}{{ $entry->label }} {{ $entry->valid_until?->format('d.m.Y') ?? 'unbefristet' }} @if ($entry->isCurrentlyValid())aktiv @elseinaktiv@endif
Keine Netze freigegeben.

Scans in diesem Projekt

@forelse ($scans as $scan) @empty@endforelse
ScanProfilStatusStartFindings
{{ $scan->name }} {{ $scan->profile->name }} {{ $scan->status->label() }} {{ $scan->started_at?->format('d.m.Y H:i') ?? '–' }} {{ $scan->findings_count }}
Noch keine Scans.
@endsection