All checks were successful
Create Docker Image / Test Application (x86_64) (push) Successful in 28s
Create Docker Image / Build Docker Image (x86_64) (push) Successful in 1m28s
Create Docker Image / Build Docker Image (arm64) (push) Successful in 4m30s
Create Docker Image / Final Docker Image Manifest (push) Successful in 8s
25 lines
745 B
PHP
25 lines
745 B
PHP
<!-- $o=RDN::class -->
|
|
<x-attribute.layout :edit="$edit ?? FALSE" :new="$new ?? FALSE" :o="$o">
|
|
@foreach($o->values as $value)
|
|
@if($edit)
|
|
<div class="input-group has-validation mb-3">
|
|
<x-form.select
|
|
name="rdn"
|
|
:options="[]"
|
|
/>
|
|
|
|
<span class="input-group-text">=</span>
|
|
<input type="text" @class(['form-control','is-invalid'=>($e=$errors->get($o->name_lc.'.'.$loop->index)),'border-focus'=>$o->values->contains($value)]) name="rdn" placeholder="rdn">
|
|
<label class="input-group-text" for="inputGroupSelect02">,{{ $o->base }}</label>
|
|
|
|
<div class="invalid-feedback pb-2">
|
|
@if($e)
|
|
{{ join('|',$e) }}
|
|
@endif
|
|
</div>
|
|
</div>
|
|
@else
|
|
{{ $value }}
|
|
@endif
|
|
@endforeach
|
|
</x-attribute.layout> |