1234567891011121314151617 |
- <?php
-
- namespace App\Models;
-
- use Illuminate\Database\Relations\Pivot;
-
- class OrdersProductsMapping extends Pivot
- {
- protected $fillable = [
- 'order_id', // 订单id
- 'product_id', // 产品ID
- 'product_name', // 产品名称
- 'product_price', // 产品价格
- 'product_color', // 产品型号款色
- 'product_amount', // 购买数量
- ];
- }
|