ibrahem-kamal/json-field

A Laravel Nova Json field.

0.3.1 2020-08-09 13:18 UTC

This package is auto-updated.

Last update: 2024-06-09 22:16:16 UTC


README

this is just a wrapper for vue-json-field

important notes

  • you need to cast your column to array protected $casts = ['json'=>'array'];

example:

JsonField::make('Json')
	    ->mode('view') // avaialable modes [tree,code,form,text,view] default code
	    ->expandedOnStart(true)
	    ->defaultJsonPath(resource_path('test.json'))  // path to the json file

screenshots