File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 88
99 @foreach ($question -> choices as $choice )
1010 <div class =" lmc-choice" id =" lmc-choice-{{ $choice -> id } }" >
11- <input type =" radio" class =" lmc-choice-input" id =" lmc-choice-input-{{ $choice -> id } }" name =" lmc-question-input-{{ $question -> id } }" value =" {{ $choice -> id } }" >
12- <label class =" lmc-choice-label" id =" lmc-choice-label-{{ $choice -> id } }" for =" lmc-choice-input-{{ $choice -> id } }" {{ ( $selectedChoice != null && $choice -> id == $selectedChoice -> id ) ? ' checked ' : ' ' } } >
11+ <input type =" radio" class =" lmc-choice-input" id =" lmc-choice-input-{{ $choice -> id } }" name =" lmc-question-input-{{ $question -> id } }" value =" {{ $choice -> id } }" {{ ( $selectedChoice != null && $choice -> id == $selectedChoice -> id ) ? ' checked ' : ' ' } } >
12+ <label class =" lmc-choice-label" id =" lmc-choice-label-{{ $choice -> id } }" for =" lmc-choice-input-{{ $choice -> id } }" >
1313 <span class =" lmc-choice-text" id =" lmc-choice-text-{{ $choice -> id } }" >{{ $choice -> text } } </span >
1414 <span class =" lmc-choice-description" id =" lmc-choice-description-{{ $choice -> id } }" >{{ $choice -> description } } </span >
1515 </label >
You can’t perform that action at this time.
0 commit comments