testing php storm code cleanup and styling

This commit is contained in:
Andras Bacsai
2023-08-08 11:51:36 +02:00
parent a8ee779b31
commit f2228cec7b
368 changed files with 23834 additions and 2623 deletions

View File

@@ -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>

View File

@@ -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>

View File

@@ -1,3 +1,3 @@
<x-layout>
<livewire:private-key.change :private_key="$private_key" />
<livewire:private-key.change :private_key="$private_key"/>
</x-layout>