2023-03-24 13:54:17 +00:00
|
|
|
<x-layout>
|
2023-05-11 13:20:02 +00:00
|
|
|
<h1>Projects </h1>
|
2023-03-28 20:13:08 +00:00
|
|
|
@forelse ($projects as $project)
|
|
|
|
<a href="{{ route('project.environments', [$project->uuid]) }}">{{ data_get($project, 'name') }}</a>
|
|
|
|
@empty
|
|
|
|
<p>No projects found.</p>
|
|
|
|
@endforelse
|
2023-05-12 09:59:02 +00:00
|
|
|
<h1>Servers </h1>
|
2023-04-25 08:47:13 +00:00
|
|
|
@forelse ($servers as $server)
|
2023-04-26 13:38:50 +00:00
|
|
|
<a href="{{ route('server.show', [$server->uuid]) }}">{{ data_get($server, 'name') }}</a>
|
2023-04-25 08:47:13 +00:00
|
|
|
@empty
|
|
|
|
<p>No servers found.</p>
|
|
|
|
@endforelse
|
2023-05-12 09:59:02 +00:00
|
|
|
<h1>Destinations </h1>
|
2023-05-02 10:47:52 +00:00
|
|
|
@forelse ($destinations as $destination)
|
|
|
|
<a href="{{ route('destination.show', [$destination->uuid]) }}">{{ data_get($destination, 'name') }}</a>
|
2023-05-03 10:38:57 +00:00
|
|
|
@empty
|
|
|
|
<p>No destinations found.</p>
|
|
|
|
@endforelse
|
2023-05-12 09:59:02 +00:00
|
|
|
<h1>Private Keys </h1>
|
2023-05-03 10:38:57 +00:00
|
|
|
@forelse ($private_keys as $private_key)
|
|
|
|
<a href="{{ route('private-key.show', [$private_key->uuid]) }}">{{ data_get($private_key, 'name') }}</a>
|
2023-05-02 10:47:52 +00:00
|
|
|
@empty
|
|
|
|
<p>No servers found.</p>
|
|
|
|
@endforelse
|
2023-05-12 09:59:02 +00:00
|
|
|
<h1>GitHub Apps </h1>
|
2023-05-08 11:36:49 +00:00
|
|
|
@forelse ($github_apps as $github_app)
|
|
|
|
<a href="{{ route('source.github.show', [$github_app->uuid]) }}">{{ data_get($github_app, 'name') }}</a>
|
|
|
|
@empty
|
|
|
|
<p>No servers found.</p>
|
|
|
|
@endforelse
|
2023-03-24 13:54:17 +00:00
|
|
|
</x-layout>
|