2023-04-25 09:01:56 +00:00
|
|
|
<x-layout>
|
2023-05-11 13:20:02 +00:00
|
|
|
@if ($type === 'public')
|
2023-08-11 18:19:42 +00:00
|
|
|
<livewire:project.new.public-git-repository :type="$type" />
|
2023-05-11 13:20:02 +00:00
|
|
|
@elseif ($type === 'private-gh-app')
|
2023-08-11 18:19:42 +00:00
|
|
|
<livewire:project.new.github-private-repository :type="$type" />
|
2023-05-11 13:20:02 +00:00
|
|
|
@elseif ($type === 'private-deploy-key')
|
2023-08-11 18:19:42 +00:00
|
|
|
<livewire:project.new.github-private-repository-deploy-key :type="$type" />
|
2023-08-11 20:41:47 +00:00
|
|
|
@elseif ($type === 'dockerfile')
|
|
|
|
<livewire:project.new.simple-dockerfile :type="$type" />
|
2023-09-25 13:48:43 +00:00
|
|
|
@elseif ($type === 'docker-compose-empty')
|
2023-09-19 13:51:13 +00:00
|
|
|
<livewire:project.new.docker-compose :type="$type" />
|
2023-10-09 13:49:48 +00:00
|
|
|
@elseif ($type === 'docker-image')
|
|
|
|
<livewire:project.new.docker-image :type="$type" />
|
2023-07-26 11:23:47 +00:00
|
|
|
@else
|
2023-08-11 18:19:42 +00:00
|
|
|
<livewire:project.new.select />
|
2023-04-26 11:25:41 +00:00
|
|
|
@endif
|
2023-04-25 09:01:56 +00:00
|
|
|
</x-layout>
|