28 lines
422 B
PHP
28 lines
422 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class ProductGift extends Model
|
|
{
|
|
/**
|
|
* @var array
|
|
*/
|
|
protected $fillable = [
|
|
'sku_id',
|
|
'gift_sku_id',
|
|
'num',
|
|
'sent',
|
|
'remaining',
|
|
];
|
|
|
|
/**
|
|
* 赠送的商品 SKU
|
|
*/
|
|
public function giftSku()
|
|
{
|
|
return $this->belongsTo(ProductSku::class, 'gift_sku_id');
|
|
}
|
|
}
|