template.blade.php 342 B

1234567891011121314
  1. @foreach($templates as $key => $template)
  2. <template id="{{$key}}">
  3. {!! $template !!}
  4. </template>
  5. @endforeach
  6. <script>
  7. function render_fields(key) {
  8. @foreach($scripts as $key => $script)
  9. if (key=='{{$key}}'){
  10. {!! $script !!}
  11. }
  12. @endforeach
  13. }
  14. </script>