ak73gucas/json-editor is a Laravel package for json editor for laravel-admin.
It currently has 0 GitHub stars and 12 downloads on Packagist (latest version 1.0.8).
Install it with composer require ak73gucas/json-editor.
Discover more Laravel packages by ak73gucas
or browse all Laravel packages to compare alternatives.
Last updated
This is a laravel-admin extension that integrates JSON Editor into laravel-admin.
DEMO Login using admin/admin
composer require ak73gucas/json-editor
php artisan vendor:publish --tag=laravel-admin-json-editor
composer require ak73gucas/json-editor
php artisan vendor:publish --tag=laravel-admin-json-editor --force
In the extensions section of the config/admin.php file, add some configuration that belongs to this extension.
'extensions' => [
'json-editor' => [
// set to false if you want to disable this extension
'enable' => true,
'config' =>
[
'mode' => 'tree',
'modes' => ['code', 'form', 'text', 'tree', 'view'], // allowed modes
],
]
]
More configurations can be found at JSON Editor.
Use it in the form form:
$form->json('content');
Licensed under The MIT License.