It looks like a simple thing but it's not working, I'm trying to get a radio button checked but it does not bring anything marked, the data is being returned from the bank, I've already done the test but the radio is not marked.
In my Blade view I'm bringing this:
<label><input type="radio" name="colaborativa" value="1" {{isset($escola->colaborativa) == 1 ? 'checked' : '' }} required>Sim</label>
<label><input type="radio" name="colaborativa" value="0" {{isset($escola->colaborativa) == 0 ? 'checked' : '' }} required>Não</label>