mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-02 22:46:16 +00:00
global storage-providers, notification channels and server providers (#247)
This commit is contained in:
@ -3,7 +3,7 @@
|
||||
<div class="mt-1 flex items-center">
|
||||
<x-select-input id="source_control" name="source_control" class="mt-1 w-full">
|
||||
<option value="" selected>{{ __("Select") }}</option>
|
||||
@foreach (\App\Models\SourceControl::getByCurrentProject() as $sourceControl)
|
||||
@foreach (\App\Models\SourceControl::getByProjectId(auth()->user()->current_project_id)->get() as $sourceControl)
|
||||
<option
|
||||
value="{{ $sourceControl->id }}"
|
||||
@if($sourceControl->id == old('source_control', isset($site) ? $site->source_control_id : null)) selected @endif
|
||||
|
Reference in New Issue
Block a user