2023-06-16 13:01:58 +00:00
|
|
|
<?php
|
|
|
|
|
2023-12-07 18:06:32 +00:00
|
|
|
namespace App\Livewire\Team;
|
2023-06-16 13:01:58 +00:00
|
|
|
|
|
|
|
use App\Models\Team;
|
|
|
|
use Livewire\Component;
|
|
|
|
|
|
|
|
class Create extends Component
|
|
|
|
{
|
|
|
|
public string $name = '';
|
2024-06-10 20:43:34 +00:00
|
|
|
|
|
|
|
public ?string $description = null;
|
2023-06-16 13:01:58 +00:00
|
|
|
|
|
|
|
protected $rules = [
|
|
|
|
'name' => 'required|min:3|max:255',
|
|
|
|
'description' => 'nullable|min:3|max:255',
|
|
|
|
];
|
2024-06-10 20:43:34 +00:00
|
|
|
|
2023-06-16 13:01:58 +00:00
|
|
|
protected $validationAttributes = [
|
|
|
|
'name' => 'name',
|
|
|
|
'description' => 'description',
|
|
|
|
];
|
2023-08-08 09:51:36 +00:00
|
|
|
|
2023-06-16 13:01:58 +00:00
|
|
|
public function submit()
|
|
|
|
{
|
|
|
|
$this->validate();
|
|
|
|
try {
|
|
|
|
$team = Team::create([
|
|
|
|
'name' => $this->name,
|
|
|
|
'description' => $this->description,
|
|
|
|
'personal_team' => false,
|
|
|
|
]);
|
|
|
|
auth()->user()->teams()->attach($team, ['role' => 'admin']);
|
2023-08-22 15:44:49 +00:00
|
|
|
refreshSession();
|
2024-06-10 20:43:34 +00:00
|
|
|
|
2023-12-27 15:45:01 +00:00
|
|
|
return redirect()->route('team.index');
|
2023-09-11 15:36:30 +00:00
|
|
|
} catch (\Throwable $e) {
|
2023-09-15 13:34:25 +00:00
|
|
|
return handleError($e, $this);
|
2023-06-16 13:01:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|