private keys view
This commit is contained in:
19
resources/views/private-key/all.blade.php
Normal file
19
resources/views/private-key/all.blade.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<x-layout>
|
||||
<h1>Private Keys</h1>
|
||||
<div class="pt-2 pb-10 text-sm">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 />
|
||||
</div>
|
||||
@endforelse
|
||||
</div>
|
||||
</x-layout>
|
||||
Reference in New Issue
Block a user