mirror of
https://github.com/ershisan99/coolify.git
synced 2025-12-17 12:33:06 +00:00
11 lines
315 B
PHP
11 lines
315 B
PHP
<div class="flex flex-wrap gap-2">
|
|
@forelse ($private_keys as $private_key)
|
|
<div class="w-64 box">
|
|
<button wire:click='setPrivateKey({{ $private_key->id }})'>{{ $private_key->name }}
|
|
</button>
|
|
</div>
|
|
@empty
|
|
<p>No private keys found</p>
|
|
@endforelse
|
|
</div>
|