承接 youneselbarnoussi/nova-json 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

youneselbarnoussi/nova-json

最新稳定版本:1.0.6

Composer 安装命令:

composer require youneselbarnoussi/nova-json

包简介

JSON Laravel Nova field.

README 文档

README

This field has been merged to Custom Nova Fields package. Keep track of it for updates!

JSON Field for Laravel Nova

This field allows you to group together Nova Fields and merge their key => value pairs into unique JSON.

Demo

Demo

Install

Run this command in your nova project: composer require youneselbarnoussi/nova-fields

Add it to your Nova Resource:

Create a new Json field passing an array of Nova Fields as second param

use Barnoussi\NovaFields\JSON;


JSON::make('Content', [
              Text::make('Name'),
              Boolean::make('Active'),
              Textarea::make('Description'),
          ]),

Attribute name can be passed as third param

use Barnoussi\NovaFields\JSON;


JSON::make('Content', [
              Text::make('Name'),
              Boolean::make('Active'),
              Textarea::make('Description'),
          ], 'content_json'),

This converts to

{ "name": "Jane", "active": true, "description": "My Description" }

and is stored in the content_json field.

In this example ensure that the content_json field is being set to cast to object on the underlying model instance.

统计信息

  • 总下载量: 10
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 1
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 4
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2022-12-27