@foreach ($github_apps as $ghapp)
{{ data_get($ghapp, 'name') }}
{{ data_get($ghapp, 'html_url') }}
@endforeach
@endif
@if ($current_step === 'repository')
@if ($repositories->count() > 0)
No repositories found. Check your GitHub App configuration.
@endif
@if ($branches->count() > 0)
{{-- Repository Detection --}}
Smart Scan
Detected configuration from your repository.
Scanning repository for Dockerfiles and configuration...
@if ($detectionRan)
@if (count($detectedDockerfiles))
Dockerfile{{ count($detectedDockerfiles) > 1 ? 's' : '' }}
({{ count($detectedDockerfiles) }})
@endif
@if (count($detectedDockerComposeFiles))
Docker Compose
({{ count($detectedDockerComposeFiles) }})
@endif
@include('livewire.project.new.partials.env-detection-badges')
@if (!count($detectedDockerfiles) && !count($detectedDockerComposeFiles) && !count($detectedEnvFiles))
No Dockerfile, Docker Compose, or env files detected.
@endif
@endif
{{-- Environment Variables Import Modal --}}
@include('livewire.project.new.partials.env-import-modal')
@else
No GitHub Application found. Please create a new GitHub Application.