laravel schemaless attributes:向雄辩模型添加无模式属性 源码
向雄辩模型添加无模式属性 如果您可以在Eloquent中使用NoSQL的精神,那会很酷吗? 这个包就是这样做的。 它提供了一种特征,当将其应用于模型时,可以将任意值存储在单个JSON列中。 这里有一些例子。 我们使用的extra_attributes这里列,但你可以将其命名。 // add and retrieve an attribute $ yourModel -> extra_attributes -> name = 'value' ; $ yourModel -> extra_attributes -> name ; // returns 'value' // you can a
用户评论