testing php storm code cleanup and styling
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
<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')]) }}">
|
||||
href="{{ route('private-key.show', ['private_key_uuid' => data_get($key, 'uuid')]) }}">
|
||||
<div class="group-hover:text-white">
|
||||
<div>{{ $key->name }}</div>
|
||||
</div>
|
||||
@@ -12,7 +12,7 @@
|
||||
@empty
|
||||
<div>
|
||||
<div>No private keys found.</div>
|
||||
<x-use-magic-bar link="/private-key/new" />
|
||||
<x-use-magic-bar link="/private-key/new"/>
|
||||
</div>
|
||||
@endforelse
|
||||
</div>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<x-layout>
|
||||
<h1>Create a new Private Key</h1>
|
||||
<div class="pt-2 pb-10 ">Private Keys are used for connection to servers.</div>
|
||||
<livewire:private-key.create />
|
||||
<livewire:private-key.create/>
|
||||
</x-layout>
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
<x-layout>
|
||||
<livewire:private-key.change :private_key="$private_key" />
|
||||
<livewire:private-key.change :private_key="$private_key"/>
|
||||
</x-layout>
|
||||
|
||||
Reference in New Issue
Block a user