Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2019
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. <div class="btn-group" data-toggle="buttons">
  2. {{ $academia->matriz == 'S' ? true : false }}
  3. <label class="btn btn-primary {{ $academia->matriz == 'S', ? 'active' : '' }}">
  4. {!! Form::radio('matriz', 'S', $academia->matriz == 'S' ? true : false) !!} Sim
  5. </label>
  6. <label class="btn btn-primary {{ $academia->matriz == 'N', ? 'active' : '' }}">
  7. {!! Form::radio('matriz', 'N' $academia->matriz == 'N', ? true : false) !!} Não
  8. </label>
  9. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement