@extends('layouts.app') @section('title', 'SSH Key\'ler') @section('content')
SSH public ve private key'lerinizi yönetin
| Ad | Açıklama | Public Key | SSH Host'lar | Durum | İşlemler |
|---|---|---|---|---|---|
| {{ $sshKey->name }} | {{ Str::limit($sshKey->description ?? '-', 50) }} |
@if($sshKey->public_key)
{{ Str::limit($sshKey->public_key, 40) }}
@else
-
@endif
|
@if($sshKey->ssh_hosts && count($sshKey->ssh_hosts) > 0)
@foreach($sshKey->ssh_hosts as $host)
{{ $host }}
@endforeach
@else
Tüm host'lar
@endif
|
@if($sshKey->is_active) Aktif @else Pasif @endif | |
| Henüz SSH key eklenmemiş. | |||||