@extends('layouts.app') @section('title', 'SSH Key Detayı') @section('content')

{{ $sshKey->name }}

{{ $sshKey->description ?? 'Açıklama yok' }}

Durum
@if($sshKey->is_active) Aktif @else Pasif @endif
Oluşturulma Tarihi
{{ $sshKey->created_at->format('d.m.Y H:i') }}
@if($sshKey->ssh_hosts && count($sshKey->ssh_hosts) > 0)
SSH Host'lar
@foreach($sshKey->ssh_hosts as $host) {{ $host }} @endforeach
@endif
Public Key
@if($sshKey->public_key) {{ $sshKey->public_key }} @else Public key bulunamadı @endif
Private Key

Private key güvenlik nedeniyle gösterilmiyor.

Key kaydedilmiş ve şifrelenmiş durumda.

@endsection