2023-05-09 09:33:50 +00:00
|
|
|
<?php
|
|
|
|
|
2023-12-07 18:06:32 +00:00
|
|
|
namespace App\Livewire\Project;
|
2023-05-09 09:33:50 +00:00
|
|
|
|
|
|
|
use App\Models\Project;
|
|
|
|
use Livewire\Component;
|
|
|
|
|
2023-05-23 08:15:12 +00:00
|
|
|
class DeleteProject extends Component
|
2023-05-09 09:33:50 +00:00
|
|
|
{
|
2023-05-23 08:15:12 +00:00
|
|
|
public array $parameters;
|
2024-06-10 20:43:34 +00:00
|
|
|
|
2023-05-09 09:33:50 +00:00
|
|
|
public int $project_id;
|
2024-06-10 20:43:34 +00:00
|
|
|
|
2024-01-31 13:18:59 +00:00
|
|
|
public bool $disabled = false;
|
2023-05-09 09:33:50 +00:00
|
|
|
|
2023-05-23 08:15:12 +00:00
|
|
|
public function mount()
|
|
|
|
{
|
2023-08-09 13:57:53 +00:00
|
|
|
$this->parameters = get_route_parameters();
|
2023-05-23 08:15:12 +00:00
|
|
|
}
|
2023-08-08 09:51:36 +00:00
|
|
|
|
2023-05-09 09:33:50 +00:00
|
|
|
public function delete()
|
|
|
|
{
|
|
|
|
$this->validate([
|
|
|
|
'project_id' => 'required|int',
|
|
|
|
]);
|
|
|
|
$project = Project::findOrFail($this->project_id);
|
|
|
|
if ($project->applications->count() > 0) {
|
2023-12-07 18:06:32 +00:00
|
|
|
return $this->dispatch('error', 'Project has resources defined, please delete them first.');
|
2023-05-09 09:33:50 +00:00
|
|
|
}
|
|
|
|
$project->delete();
|
2024-06-10 20:43:34 +00:00
|
|
|
|
2024-01-07 15:23:41 +00:00
|
|
|
return redirect()->route('project.index');
|
2023-05-09 09:33:50 +00:00
|
|
|
}
|
|
|
|
}
|