我想建立一张购物卡,原因是所有购物车都在使用会话,我想用json将数据保存到我的数据库中。
现在是正确的开始方式。
迁移
public function up()
{
Schema::create('shopping_carts', function (Blueprint $table) {
$table->increments('id');
$table->json('soppingCart');
$table->timestamps();
});
}
模型
class ShoppingCart extends Model
{
protected $fillable = ['shoppingCart'];
protected $casts =['shoppingCart' =>'json'];
}
我想念一下吗?
答案 0 :(得分:0)
您在migration
文件中犯了错误:
...
$table->json('soppingCart');
...
shoppingCart
代替soppingCart
。