2023-03-24 13:54:17 +00:00
|
|
|
<x-layout>
|
2023-04-25 12:43:35 +00:00
|
|
|
<h1>Projects <a href="{{ route('project.new') }}"><button>New</button></a></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-04-26 13:38:50 +00:00
|
|
|
<h1>Servers <a href="{{ route('server.new') }}"><button>New</button></a></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-02 10:47:52 +00:00
|
|
|
<h1>Destinations <a href="{{ route('destination.new') }}"><button>New</button></a></h1>
|
|
|
|
|
@forelse ($destinations as $destination)
|
|
|
|
|
<a href="{{ route('destination.show', [$destination->uuid]) }}">{{ data_get($destination, 'name') }}</a>
|
|
|
|
|
@empty
|
|
|
|
|
<p>No servers found.</p>
|
|
|
|
|
@endforelse
|
2023-03-24 13:54:17 +00:00
|
|
|
</x-layout>
|