This commit is contained in:
Andras Bacsai
2023-06-07 15:08:35 +02:00
parent 50bac2c056
commit bbcabc8e71
31 changed files with 636 additions and 472 deletions

View File

@@ -1,10 +1,10 @@
<div class="flex flex-wrap gap-2">
<div class="grid grid-cols-2">
@forelse ($private_keys as $private_key)
<div class="w-64 box">
<button wire:click='setPrivateKey({{ $private_key->id }})'>{{ $private_key->name }}
</button>
</div>
<x-forms.button wire:click='setPrivateKey({{ $private_key->id }})'>{{ $private_key->name }}
</x-forms.button>
@empty
<p>No private keys found</p>
<div>No private keys found.
<x-use-magic-bar />
</div>
@endforelse
</div>