diff --git a/resources/views/livewire/project/clone-me.blade.php b/resources/views/livewire/project/clone-me.blade.php
index 59ece57d6..3c7f874ce 100644
--- a/resources/views/livewire/project/clone-me.blade.php
+++ b/resources/views/livewire/project/clone-me.blade.php
@@ -7,86 +7,101 @@
Quickly clone all resources to a new project or environment.
- Clone to a new Project
- Clone to a new Environment
-{{--
-
-
Clone Volume Data
-
- Clone your volume data to the new resources volumes. This process requires a brief container downtime to ensure data consistency.
-
-
- @if(!$cloneVolumeData)
-
-
-
- @else
-
-
-
- @endif
-
-
--}}
-
- Servers
- Choose the server and network to clone the resources to.
-
- @foreach ($servers->sortBy('id') as $server)
-
-
{{ $server->name }}
-
Docker Networks
-
- @foreach ($server->destinations() as $destination)
-
- {{ $destination->name }}
-
- @endforeach
+
Destination Server
+
Choose the server and network to clone the resources to.
+
+
+
+
+
+
+
+
+ | Server |
+ Network |
+
+
+
+ @foreach ($servers->sortBy('id') as $server)
+ @foreach ($server->destinations() as $destination)
+
+ |
+ {{ $server->name }} |
+
+ {{ $destination->name }}
+ |
+
+ @endforeach
+ @endforeach
+
+
+
- @endforeach
+
-
Resources
-
These will be cloned to the new project
-
- @foreach ($environment->applications->sortBy('name') as $application)
-
-
-
{{ $application->name }}
-
{{ $application->description }}
+
Resources
+
These will be cloned to the new project
+
+
+
+
+
+
+
+
+ | Name |
+ Type |
+ Description |
+
+
+
+ @foreach ($environment->applications->sortBy('name') as $application)
+
+ |
+ {{ $application->name }} |
+ Application |
+
+ {{ $application->description ?: '-' }} |
+
+ @endforeach
+ @foreach ($environment->databases()->sortBy('name') as $database)
+
+ |
+ {{ $database->name }}
+ |
+ Database |
+
+ {{ $database->description ?: '-' }} |
+
+ @endforeach
+ @foreach ($environment->services->sortBy('name') as $service)
+
+ |
+ {{ $service->name }}
+ |
+ Service |
+
+ {{ $service->description ?: '-' }} |
+
+ @endforeach
+
+
+
- @endforeach
- @foreach ($environment->databases()->sortBy('name') as $database)
-
-
-
{{ $database->name }}
-
{{ $database->description }}
-
-
- @endforeach
- @foreach ($environment->services->sortBy('name') as $service)
-
-
-
{{ $service->name }}
-
{{ $service->description }}
-
-
- @endforeach
+
+
+
+ Clone to new
+ Project
+ Clone to new
+ Environment