initial commit
This commit is contained in:
67
resources/views/partials/decision_dropdown.blade.php
Normal file
67
resources/views/partials/decision_dropdown.blade.php
Normal file
@@ -0,0 +1,67 @@
|
||||
@php
|
||||
$decisionFromClientWave=decisionFromClientWave();
|
||||
@endphp
|
||||
<select name="info_item[wave][]" id="wave-0"
|
||||
class="form-control"
|
||||
onchange="showDtype(this, 0)"
|
||||
required="">
|
||||
<option value="">Please select template</option>
|
||||
@foreach($decisionFromClientWave as $decision)
|
||||
@php $select = ($decision['key'] == 'w'.$creditreport->wave) ? 'selected': ''; @endphp
|
||||
<option value="{{$decision['key']}}" {{$select}}>{{$decision['text']}}</option>
|
||||
|
||||
<option value="{{$decision['key']}}" disabled="disabled">{{$decision['text']}}</option>
|
||||
|
||||
@endforeach
|
||||
|
||||
<!-- <option value="w2">I want to use a Wave 2 attack for
|
||||
this content box's items (Day 20-39)
|
||||
</option>
|
||||
|
||||
<option value="w2" disabled="disabled">I want to use
|
||||
a Wave 2 attack for this content box's items
|
||||
(Day 20-39)
|
||||
</option>
|
||||
|
||||
<option value="w3">I want to use a Wave 3 attack for
|
||||
this content box's items (Day 40-59)
|
||||
</option>
|
||||
|
||||
<option value="w3" disabled="disabled">I want to use
|
||||
a Wave 3 attack for this content box's items
|
||||
(Day 40-59)
|
||||
</option>
|
||||
|
||||
<option value="w4">I want to use a Wave 4 attack for
|
||||
this content box's items (Day 60-79)
|
||||
</option>
|
||||
|
||||
<option value="w4" disabled="disabled">I want to use
|
||||
a Wave 4 attack for this content box's items
|
||||
(Day 60-79)
|
||||
</option>
|
||||
|
||||
<option value="w5">I want to use a Wave 5 attack for
|
||||
this content box's items (Day 80-99)
|
||||
</option>
|
||||
|
||||
<option value="w5" disabled="disabled">I want to use
|
||||
a Wave 5 attack for this content box's items
|
||||
(Day 80-99)
|
||||
</option>
|
||||
|
||||
<option value="w6">I want to use a Wave 6+ attack
|
||||
for this content box's items (Day 100-119)
|
||||
</option>
|
||||
|
||||
<option value="w6" disabled="disabled">I want to use
|
||||
a Wave 6+ attack for this content box's items
|
||||
(Day 100-119)
|
||||
</option>
|
||||
|
||||
<option value="w7">I want to use a RANDOM WAVE #
|
||||
Attack for this content box's item (Day ??)
|
||||
</option>-->
|
||||
|
||||
|
||||
</select>
|
||||
Reference in New Issue
Block a user