46 lines
1.9 KiB
PHP
46 lines
1.9 KiB
PHP
<div>
|
|
@if ($github_apps->count() > 0)
|
|
<h1>Choose a GitHub App</h1>
|
|
@foreach ($github_apps as $ghapp)
|
|
<x-inputs.button wire:key="{{ $ghapp->id }}" wire:click="loadRepositories({{ $ghapp->id }})">
|
|
{{ $ghapp->name }}
|
|
</x-inputs.button>
|
|
@endforeach
|
|
<div>
|
|
@if ($repositories->count() > 0)
|
|
<h3>Choose a Repository</h3>
|
|
<select wire:model.defer="selected_repository_id">
|
|
@foreach ($repositories as $repo)
|
|
@if ($loop->first)
|
|
<option selected value="{{ data_get($repo, 'id') }}">{{ data_get($repo, 'name') }}</option>
|
|
@else
|
|
<option value="{{ data_get($repo, 'id') }}">{{ data_get($repo, 'name') }}</option>
|
|
@endif
|
|
@endforeach
|
|
</select>
|
|
<x-inputs.button wire:click="loadBranches">Select Repository</x-inputs.button>
|
|
@endif
|
|
</div>
|
|
<div>
|
|
@if ($branches->count() > 0)
|
|
<h3>Choose a Branch</h3>
|
|
<select wire:model.defer="selected_branch_name">
|
|
<option disabled>Choose a branch</option>
|
|
@foreach ($branches as $branch)
|
|
@if ($loop->first)
|
|
<option selected value="{{ data_get($branch, 'name') }}">{{ data_get($branch, 'name') }}
|
|
</option>
|
|
@else
|
|
<option value="{{ data_get($branch, 'name') }}">{{ data_get($branch, 'name') }}</option>
|
|
@endif
|
|
@endforeach
|
|
</select>
|
|
<x-inputs.button wire:click="submit">Save</x-inputs.button>
|
|
@endif
|
|
</div>
|
|
@else
|
|
Add new github app
|
|
@endif
|
|
|
|
</div>
|