coolify/resources/views/private-key/all.blade.php
Andras Bacsai fd89735521 Added +add flows everywhere
ui: changed vibrant button to not so vibrant
2023-07-26 13:23:47 +02:00

20 lines
687 B
PHP

<x-layout>
<h1>Private Keys</h1>
<div class="pt-2 pb-10 ">All Private Keys</div>
<div class="grid gap-2 lg:grid-cols-2">
@forelse ($privateKeys as $key)
<a class="text-center hover:no-underline box group"
href="{{ route('private-key.show', ['private_key_uuid' => data_get($key, 'uuid')]) }}">
<div class="group-hover:text-white">
<div>{{ $key->name }}</div>
</div>
</a>
@empty
<div>
<div>No private keys found.</div>
<x-use-magic-bar link="/private-key/new" />
</div>
@endforelse
</div>
</x-layout>