mirror of
https://github.com/ershisan99/coolify.git
synced 2025-12-17 12:33:06 +00:00
10 lines
375 B
PHP
10 lines
375 B
PHP
<x-layout>
|
|
@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" />
|
|
@endif
|
|
</x-layout>
|