'int', 'specs' => 'json', ]; /** * @var array */ protected $fillable = [ 'user_id', 'sku_id', 'name', 'cover', 'sell_price', 'vip_price', 'specs', 'quantity', ]; /** * 此购物车物品所属的商品 */ public function sku() { return $this->belongsTo(ProductSku::class); } }