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>
|