25 lines
656 B
PHP
25 lines
656 B
PHP
<?php
|
|
|
|
namespace App\Livewire\Project\New;
|
|
|
|
use App\Models\Project;
|
|
use Illuminate\Foundation\Auth\Access\AuthorizesRequests;
|
|
use Livewire\Component;
|
|
|
|
class EmptyProject extends Component
|
|
{
|
|
use AuthorizesRequests;
|
|
|
|
public function createEmptyProject()
|
|
{
|
|
$this->authorize('create', Project::class);
|
|
|
|
$project = Project::create([
|
|
'name' => generate_random_name(),
|
|
'team_id' => currentTeam()->id,
|
|
'uuid' => new_public_id(),
|
|
]);
|
|
|
|
return redirectRoute($this, 'project.show', ['project_uuid' => $project->uuid, 'environment_uuid' => $project->environments->first()->uuid]);
|
|
}
|
|
}
|