29 lines
		
	
	
		
			812 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			812 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Http\Livewire\Project\Application;
 | |
| 
 | |
| use App\Models\Application;
 | |
| use Livewire\Component;
 | |
| 
 | |
| class Danger extends Component
 | |
| {
 | |
|     public Application $application;
 | |
|     public array $parameters;
 | |
| 
 | |
|     public function mount()
 | |
|     {
 | |
|         $this->parameters = getParameters();
 | |
|     }
 | |
|     public function delete()
 | |
|     {
 | |
|         $destination = $this->application->destination->getMorphClass()::where('id', $this->application->destination->id)->first();
 | |
| 
 | |
|         instantRemoteProcess(["docker rm -f {$this->application->uuid}"], $destination->server);
 | |
|         $this->application->delete();
 | |
|         return redirect()->route('project.resources', [
 | |
|             'project_uuid' => $this->parameters['project_uuid'],
 | |
|             'environment_name' => $this->parameters['environment_name']
 | |
|         ]);
 | |
|     }
 | |
| }
 | 
