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

10 lines
375 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')
<livewire:project.new.public-git-repository :type="$type" />
@elseif ($type === 'private-gh-app')
<livewire:project.new.github-private-repository :type="$type" />
@elseif ($type === 'private-deploy-key')
<livewire:project.new.github-private-repository-deploy-key :type="$type" />
2023-04-26 13:25:41 +02:00
@endif
2023-04-25 11:01:56 +02:00
</x-layout>