coolify/resources/views/project/new.blade.php

14 lines
527 B
PHP
Raw Normal View History

2023-04-25 11:01:56 +02:00
<x-layout>
2023-05-11 15:20:02 +02:00
@if ($type === 'public')
2023-08-11 20:19:42 +02:00
<livewire:project.new.public-git-repository :type="$type" />
2023-05-11 15:20:02 +02:00
@elseif ($type === 'private-gh-app')
2023-08-11 20:19:42 +02:00
<livewire:project.new.github-private-repository :type="$type" />
2023-05-11 15:20:02 +02:00
@elseif ($type === 'private-deploy-key')
2023-08-11 20:19:42 +02:00
<livewire:project.new.github-private-repository-deploy-key :type="$type" />
2023-08-11 22:41:47 +02:00
@elseif ($type === 'dockerfile')
<livewire:project.new.simple-dockerfile :type="$type" />
@else
2023-08-11 20:19:42 +02:00
<livewire:project.new.select />
2023-04-26 13:25:41 +02:00
@endif
2023-04-25 11:01:56 +02:00
</x-layout>