PHP Classes

File: src/stubs/views/partials/fields/show/json.blade.php.stub

Recommend this page to a friend!
  Classes of TJ Webb   Laravel CRUD Generator   src/stubs/views/partials/fields/show/json.blade.php.stub   Download  
File: src/stubs/views/partials/fields/show/json.blade.php.stub
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Laravel CRUD Generator
Generate MVC classes for any Laravel model
Author: By
Last change:
Date: 4 years ago
Size: 853 bytes
 

Contents

Class file image Download
<strong>{FIELD_DISPLAY_NAME}:</strong> <div id="jsoneditor_{FIELD_MACHINE_NAME}" class="json_editor"></div> <script> (function(uid){ container = document.getElementById("jsoneditor_" + uid) options = { modes: ["tree"], onChangeText: function(jsonString){ document.getElementById("jsontext_" + uid).value = jsonString; } } editor = new JSONEditor(this.container, this.options) initial = {!! is_string({MODEL_VARIABLE}) ? {MODEL_VARIABLE} : json_encode({MODEL_VARIABLE} ?? new stdClass()) !!} editor.set(initial) })("{FIELD_MACHINE_NAME}"); </script>