芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/store.kwesioben.com/app/Model/Cart.php
'float', 'discount' => 'float', 'tax' => 'float', 'seller_id' => 'integer', 'quantity' => 'integer', 'shipping_cost'=>'float' ]; public function cart_shipping(){ return $this->hasOne(CartShipping::class,'cart_group_id','cart_group_id'); } public function product() { return $this->belongsTo(Product::class)->where('status', 1); } public function seller() { return $this->belongsTo(Seller::class, 'seller_id'); } public function all_product() { return $this->belongsTo(Product::class, 'product_id'); } }