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