This commit is contained in:
Joao Patricio
2023-05-03 06:23:45 +01:00
parent e7763f3b73
commit 00a8c847e9
17 changed files with 621 additions and 2 deletions

View File

@@ -1,7 +1,7 @@
<x-layout>
<h1>Servers</h1>
@forelse ($servers as $server)
<a href="{{ route('project.environments', [$server->uuid]) }}">{{ data_get($server, 'name') }}</a>
<a href="{{ route('server.show', [$server->uuid]) }}">{{ data_get($server, 'name') }}</a>
@empty
<p>No servers found.</p>
@endforelse