coolify/resources/views/security/private-key/index.blade.php

27 lines
932 B
PHP
Raw Normal View History

2023-06-15 09:58:17 +02:00
<x-layout>
2023-09-04 09:44:44 +02:00
<x-security.navbar />
<div class="flex gap-2">
<h2 class="pb-4">Private Keys</h2>
2024-03-25 11:33:38 +01:00
<x-modal-input buttonTitle="+ Add" title="New Private Key">
<livewire:security.private-key.create />
</x-modal-input>
2023-09-04 09:44:44 +02:00
</div>
2023-06-15 09:58:17 +02:00
<div class="grid gap-2 lg:grid-cols-2">
@forelse ($privateKeys as $key)
2024-04-29 11:06:06 +02:00
<a class="box"
2023-09-04 09:44:44 +02:00
href="{{ route('security.private-key.show', ['private_key_uuid' => data_get($key, 'uuid')]) }}">
2024-04-29 11:06:06 +02:00
<div class="flex flex-col mx-6">
<div class="box-title">
{{ data_get($key, 'name') }}
</div>
<div class="box-description">
{{ $key->description }}
</div>
2023-06-15 09:58:17 +02:00
</div>
</a>
@empty
2024-03-21 14:30:35 +01:00
<div>No private keys found.</div>
2023-06-15 09:58:17 +02:00
@endforelse
</div>
</x-layout>