coolify/app/Livewire/Project/AddEmpty.php

38 lines
951 B
PHP
Raw Normal View History

<?php
2023-12-07 19:06:32 +01:00
namespace App\Livewire\Project;
use App\Models\Project;
use Livewire\Component;
class AddEmpty extends Component
{
public string $name = '';
public string $description = '';
protected $rules = [
'name' => 'required|string|min:3',
'description' => 'nullable|string',
];
protected $validationAttributes = [
'name' => 'Project Name',
'description' => 'Project Description',
];
public function submit()
{
try {
$this->validate();
$project = Project::create([
'name' => $this->name,
'description' => $this->description,
2023-08-22 17:44:49 +02:00
'team_id' => currentTeam()->id,
]);
2023-12-07 22:56:55 +01:00
return $this->redirectRoute('project.show', $project->uuid, navigate: true);
2023-09-11 17:36:30 +02:00
} catch (\Throwable $e) {
return handleError($e, $this);
} finally {
$this->name = '';
}
}
}