nova images:用于JSON多个图像的Laravel Nova字段 源码
多图组件 新星影像 使用方法 // In Model public $ cast = [ 'images' => 'array' , ]; // In Migration public function up () { Schema :: create ( 'users' , function ( Blueprint $ table ) { $ table -> json ( 'images' )-> nullable ()-> comment ( '多图' ); }); } // In Nova resource public function fields ( Request $ request ) { return [ \ Weiwait \ NovaImages \ Images :: make ( '图片
用户评论