29 lines
521 B
PHP
29 lines
521 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class DealerOrderProduct extends Model
|
|
{
|
|
protected $fillable = [
|
|
'order_id',
|
|
'product_id',
|
|
'name',
|
|
'subtitle',
|
|
'cover',
|
|
'price',
|
|
'sale_price',
|
|
'qty',
|
|
'deposit_qty',
|
|
];
|
|
|
|
/**
|
|
* 商品管理津贴规则
|
|
*/
|
|
public function productManageSubsidyRules()
|
|
{
|
|
return $this->hasMany(DealerProductManageRule::class, 'product_id', 'product_id');
|
|
}
|
|
}
|