move files around

This commit is contained in:
Andras Bacsai
2023-04-25 11:01:56 +02:00
parent 18a2d0bd90
commit dd51b002b8
29 changed files with 63 additions and 38 deletions

View File

@@ -0,0 +1,14 @@
<x-layout>
<h1>Projects <button><a class="no-underline" href="{{ route('project.new') }}">New</a></button></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</h1>
@forelse ($servers as $server)
<a href="{{ route('server.dashboard', [$server->uuid]) }}">{{ data_get($server, 'name') }}</a>
@empty
<p>No servers found.</p>
@endforelse
</x-layout>