2023-06-15 07:58:17 +00:00
|
|
|
<x-layout>
|
2023-09-04 07:44:44 +00:00
|
|
|
<x-security.navbar />
|
|
|
|
<div class="flex gap-2">
|
|
|
|
<h2 class="pb-4">Private Keys</h2>
|
2024-03-25 10:33:38 +00:00
|
|
|
<x-modal-input buttonTitle="+ Add" title="New Private Key">
|
|
|
|
<livewire:security.private-key.create />
|
|
|
|
</x-modal-input>
|
2023-09-04 07:44:44 +00:00
|
|
|
</div>
|
2023-06-15 07:58:17 +00:00
|
|
|
<div class="grid gap-2 lg:grid-cols-2">
|
|
|
|
@forelse ($privateKeys as $key)
|
2024-01-07 15:23:41 +00:00
|
|
|
<a class="text-center hover:no-underline box group"
|
2023-09-04 07:44:44 +00:00
|
|
|
href="{{ route('security.private-key.show', ['private_key_uuid' => data_get($key, 'uuid')]) }}">
|
2024-03-24 15:00:25 +00:00
|
|
|
<div class="group-hover:dark:text-white">
|
2023-06-15 07:58:17 +00:00
|
|
|
<div>{{ $key->name }}</div>
|
|
|
|
</div>
|
|
|
|
</a>
|
|
|
|
@empty
|
2024-03-21 13:30:35 +00:00
|
|
|
<div>No private keys found.</div>
|
2023-06-15 07:58:17 +00:00
|
|
|
@endforelse
|
|
|
|
</div>
|
|
|
|
</x-layout>
|