21 lines
899 B
PHP
21 lines
899 B
PHP
<x-layout>
|
|
<h1>Projects <a href="{{ route('project.new') }}"><button>New</button></a></h1>
|
|
@forelse ($projects as $project)
|
|
<a href="{{ route('project.environments', [$project->uuid]) }}">{{ data_get($project, 'name') }}</a>
|
|
@empty
|
|
<p>No projects found.</p>
|
|
@endforelse
|
|
<h1>Servers <a href="{{ route('server.new') }}"><button>New</button></a></h1>
|
|
@forelse ($servers as $server)
|
|
<a href="{{ route('server.show', [$server->uuid]) }}">{{ data_get($server, 'name') }}</a>
|
|
@empty
|
|
<p>No servers found.</p>
|
|
@endforelse
|
|
<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
|
|
</x-layout>
|