PHPOffice / PHPPresentation

A pure PHP library for reading and writing presentations documents
https://phpoffice.github.io/PHPPresentation
Other
1.31k stars 523 forks source link

how to save old array value of radio input component? #757

Closed ZHE-Alnasser closed 3 months ago

ZHE-Alnasser commented 1 year ago

I am trying to save the old radio button value it is an array value and here is my code:

                @foreach($question->options as $radio)
<div>
                    <input id="{{$radio->id}}" class="mx-3 my-2"   name="questions[{{$key}}][value]" type="radio" value="{{$radio->name}}" > {{$radio->name}}
</div>
                @endforeach

How can I do that please help me