@extends('layouts.app') @section('title', 'SSH Key\'ler') @section('content')

SSH Key'ler

SSH public ve private key'lerinizi yönetin

@if(auth()->user()->isAdmin() || (auth()->user()->role === 'developer' && auth()->user()->hasModuleAccess('ssh'))) @endif
@forelse($sshKeys as $sshKey) @empty @endforelse
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
@csrf @method('DELETE')
Henüz SSH key eklenmemiş.
@endsection