lasthourcloud/resources/views/destination/all.blade.php

41 lines
1.7 KiB
PHP
Raw Normal View History

2023-06-13 08:02:58 +00:00
<x-layout>
2024-03-22 10:34:15 +00:00
<div class="flex items-start gap-2">
<h1>Destinations</h1>
@if ($servers->count() > 0)
<x-modal-input buttonTitle="+ Add" title="New Destination">
<livewire:destination.new.docker :server_id="$server_id" />
</x-modal-input>
@endif
2024-03-22 10:34:15 +00:00
</div>
<div class="subtitle">Network endpoints to deploy your resources.</div>
2023-08-11 18:19:42 +00:00
<div class="grid gap-2 lg:grid-cols-2">
2023-06-13 08:02:58 +00:00
@forelse ($destinations as $destination)
@if ($destination->getMorphClass() === 'App\Models\StandaloneDocker')
<a class="flex gap-4 text-center hover:no-underline box group"
2023-08-11 18:19:42 +00:00
href="{{ route('destination.show', ['destination_uuid' => data_get($destination, 'uuid')]) }}">
2024-03-24 15:00:25 +00:00
<div class="group-hover:dark:text-white">
2023-06-13 08:02:58 +00:00
<div>{{ $destination->name }}</div>
</div>
</a>
@endif
@if ($destination->getMorphClass() === 'App\Models\SwarmDocker')
<a class="flex gap-4 text-center hover:no-underline box group"
2023-08-11 18:19:42 +00:00
href="{{ route('destination.show', ['destination_uuid' => data_get($destination, 'uuid')]) }}">
2023-06-13 08:02:58 +00:00
2024-03-24 15:00:25 +00:00
<div class="group-hover:dark:text-white">
2023-06-13 08:02:58 +00:00
<div>{{ $destination->name }}</div>
</div>
</a>
@endif
@empty
<div>
@if ($servers->count() === 0)
<div> No servers found. Please add one first.</div>
@else
<div>No destinations found.</div>
@endif
2023-06-13 08:02:58 +00:00
</div>
@endforelse
</div>
</x-layout>