tree.blade.php 340 B

12345678910111213
  1. <div {!! $attributes !!}><div class="da-tree"></div></div>
  2. <script>
  3. LA.ready(function () {
  4. var opts = {!! json_encode($options) !!}, tree = $('#{{$id}}').find('.da-tree');
  5. opts.core.data = {!! json_encode($nodes) !!};
  6. tree.on("loaded.jstree", function () {
  7. tree.jstree('open_all');
  8. }).jstree(opts);
  9. });
  10. </script>