change/modify/delete/add private keys

This commit is contained in:
Andras Bacsai
2023-05-03 12:38:57 +02:00
parent 906b4ce158
commit 612460ca16
16 changed files with 169 additions and 24 deletions

View File

@@ -0,0 +1,7 @@
<div>
@forelse ($private_keys as $private_key)
<button wire:click='setPrivateKey({{ $private_key->id }})'>{{ $private_key->name }}</button>
@empty
<p>No private keys found</p>
@endforelse
</div>