checkbox.blade.php 389 B

123456789101112131415
  1. @extends('admin::grid.displayer.editinline.template')
  2. @section('field')
  3. {!! $checkbox !!}
  4. @endsection
  5. <script>
  6. @section('popover-content')
  7. $template.find('input[type=checkbox]').each(function (index, checkbox) {
  8. if($.inArray($(checkbox).attr('value'), $trigger.data('value')) >= 0) {
  9. $(checkbox).attr('checked', true);
  10. }
  11. });
  12. @endsection
  13. </script>