I have a posts table that has a json column "read_more_section".
And I want to store on that column the information regarding some fields on the NOVA CMS (title, description, label and link). Do you know how to properly do that in Nova? To store what is entered in these 4 fields in the json column "read_more_section"?
public function fields(Request $request)
{
return [
ID::make(__('ID'), 'id')->sortable(),
new Panel('Read More Section', [
Text::make('Title')->rules(['max:255']),
Text::make('Description'),
Text::make('Label'),
Text::make('Link'),
]),
];
}