2023-04-19 10:42:15 +00:00
|
|
|
<div>
|
2023-05-16 11:11:05 +00:00
|
|
|
<h3>Source</h3>
|
2023-05-03 12:09:10 +00:00
|
|
|
<p>Source Name: {{ data_get($application, 'source.name') }}</p>
|
|
|
|
<p>Is Public Source: {{ data_get($application, 'source.is_public') }}</p>
|
2023-04-25 12:43:35 +00:00
|
|
|
<div class="flex flex-col w-96">
|
2023-05-03 12:09:10 +00:00
|
|
|
<x-inputs.input id="application.git_repository" label="Git Repository" readonly />
|
|
|
|
<x-inputs.input id="application.git_branch" label="Git Branch" readonly />
|
2023-05-10 10:22:27 +00:00
|
|
|
<form wire:submit.prevent='submit'>
|
|
|
|
<x-inputs.input id="application.git_commit_sha" placeholder="HEAD" label="Git Commit SHA" />
|
|
|
|
<x-inputs.button type="submit">Save</x-inputs.button>
|
|
|
|
</form>
|
|
|
|
<a target="_blank" href="{{ $application->gitCommits }}">
|
|
|
|
<x-inputs.button>Commits ↗️</x-inputs.button>
|
|
|
|
</a>
|
2023-04-19 10:42:15 +00:00
|
|
|
</div>
|
|
|
|
</div>
|