Resource Operations
    You can easily make different kind of operations on this resource.
{{-- 
    
        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
        
  --}}
    Clone
    To another project / environment on a different / same server.
    
        
            @foreach ($servers->sortBy('id') as $server)
                
Server: {{ $server->name }}
                @foreach ($server->destinations() as $destination)
                    
                        
                            
                                
                                    Network
                                    {{ $destination->name }}
                                 
                             
                        
                    
                @endforeach
            @endforeach
        
 
    Move
    Between projects / environments.
    
        
            This resource is currently in the {{ $resource->environment->project->name }} /
                {{ $resource->environment->name }} environment.
        
        
            @forelse ($projects as $project)
                
Project: {{ $project->name }}
                @foreach ($project->environments as $environment)
                    
                        
                            
                                
                                    Environment
                                    {{ $environment->name }}
                                 
                             
                        
                    
                @endforeach
            @empty
                
No projects found to move to
            @endforelse