checkbox.blade.php 280 B

12345678910
  1. <div class="input-group input-group-sm">
  2. @php
  3. $checkbox = new \Dcat\Admin\Widgets\Checkbox($name, $options);
  4. if ($inline) $checkbox->inline();
  5. $checkbox->checked(request($name, is_null($value) ? [] : $value));
  6. @endphp
  7. {!! $checkbox !!}
  8. </div>